Commit acd6d30e by 宋毅

tj

parent 1156be1f
...@@ -628,15 +628,15 @@ class OrderInfoService extends ServiceBase { ...@@ -628,15 +628,15 @@ class OrderInfoService extends ServiceBase {
tipsMsg = "修改失败," + iKey + "不能为空,30030"; tipsMsg = "修改失败," + iKey + "不能为空,30030";
} }
if (tm[iKey] && tm[iKey] != dbTm[iKey]) { if (tm[iKey] && tm[iKey] != dbTm[iKey]) {
itemResult.data.tm[iKey] = tm[iKey]; itemResult.data.tm[iKey] = tm[iKey].toString();
} }
} }
} }
if (["3", "4", "5"].indexOf(tm.tmFormType) < 0) { if (["3", "4", "5"].indexOf(tm.tmFormType.toString()) < 0) {
return system.getResult(null, "商标类型值错误,20185"); return system.getResult(null, "商标类型值错误,20185");
} }
var putOrderProductItem = {}; var putOrderProductItem = {};
if (tm.tmFormType == "4") { if (tm.tmFormType.toString() == "4") {
itemResult.data.tm.tmName = "图形"; itemResult.data.tm.tmName = "图形";
putOrderProductItem.channelItemAppendName = "图形"; putOrderProductItem.channelItemAppendName = "图形";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment