|
|
@@ -104,11 +104,11 @@ 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", "标签");
|
|
|
+ //String ftag = content.getString("ftag", "tagents_product.ftag", "标签");
|
|
|
boolean fisonsale = content.getBoolean("fisonsale");
|
|
|
- if (!isJSONArray(ftag)) {
|
|
|
- return new D3BReturnObject_Err().setErrMsg("ftag不是有效的JSONArray格式").toString();
|
|
|
- }
|
|
|
+// if (!isJSONArray(ftag)) {
|
|
|
+// return new D3BReturnObject_Err().setErrMsg("ftag不是有效的JSONArray格式").toString();
|
|
|
+// }
|
|
|
PaoSetRemote tagents_productSet = getP2ServerSystemPaoSet("tagents_product", "siteid='" + siteid + "' and tagentsid='" + tagentsid + "' and tagents_productid='" + tagents_productid + "'");
|
|
|
PaoRemote tagents_product = null;
|
|
|
if (tagents_productid <= 0 || tagents_productSet.isEmpty()) {
|
|
|
@@ -125,7 +125,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("ftag", ftag, 11L);//产品标签
|
|
|
tagents_product.setValue("fnotes", fnotes, 11L);//备注
|
|
|
tagents_product.setValue("changeby", username, 11L);//修改人
|
|
|
tagents_product.setValue("changedate", sysdate, 11L);//修改时间
|