|
|
@@ -47,6 +47,7 @@ public class products extends Controller {
|
|
|
where.append("t1.fprodname like'%").append(whereObject.getString("condition")).append("%' ");
|
|
|
where.append("or t1.fprodnum like'%").append(whereObject.getString("condition")).append("%' ");
|
|
|
where.append("or t1.fintroduction like'%").append(whereObject.getString("condition")).append("%' ");
|
|
|
+ where.append("or t1.ftag like'%").append(whereObject.getString("condition")).append("%' ");
|
|
|
where.append(")");
|
|
|
}
|
|
|
if (whereObject.getBooleanValue("fisonsale")) {
|
|
|
@@ -98,6 +99,7 @@ public class products extends Controller {
|
|
|
String fprodclassname = content.getString("fprodclassname", "tagents_product.fprodclassname", "经营类目");
|
|
|
String fintroduction = content.getString("fintroduction", "tagents_product.fintroduction", "产品介绍");
|
|
|
String fnotes = content.getString("fnotes", "tagents_product.fnotes", "备注");
|
|
|
+ String ftag = content.getString("ftag", "tagents_product.ftag", "标签");
|
|
|
|
|
|
PaoSetRemote tagents_productSet = getP2ServerSystemPaoSet("tagents_product", "siteid='" + siteid + "' and tagentsid='" + tagentsid + "' and tagents_productid='" + tagents_productid + "'");
|
|
|
PaoRemote tagents_product = null;
|
|
|
@@ -115,6 +117,7 @@ public class products extends Controller {
|
|
|
tagents_product.setValue("fprice", fprice, 11L);//销售单价
|
|
|
tagents_product.setValue("fprodclassname", fprodclassname, 11L);//经营类目
|
|
|
tagents_product.setValue("fintroduction", fintroduction, 11L);//产品介绍
|
|
|
+ tagents_product.setValue("ftag", ftag, 11L);//产品标签
|
|
|
tagents_product.setValue("fnotes", fnotes, 11L);//备注
|
|
|
tagents_product.setValue("changeby", username, 11L);//修改人
|
|
|
tagents_product.setValue("changedate", sysdate, 11L);//修改时间
|