Commit c9f06730 by 任晓松

update

parent 83ba17ff
...@@ -935,6 +935,22 @@ class OrderInfoService extends ServiceBase { ...@@ -935,6 +935,22 @@ class OrderInfoService extends ServiceBase {
itemResult.data.nclones = tempNclList; itemResult.data.nclones = tempNclList;
actionBody.nclones = tempNclList; actionBody.nclones = tempNclList;
} }
let tmSelectType = actionBody.tmSelectType;
if (tmSelectType) {
var dbTm = itemResult.data.tmSelectType;
var tmKeys = Object.keys(tmSelectType);
if (dbTm && tmKeys.length > 0) {
for (let i = 0; i < tmKeys.length; i++) {
const iKey = tmKeys[i];
if (!tmSelectType[iKey]) {
tipsMsg = "修改失败," + iKey + "不能为空,30030";
}
if (tmSelectType[iKey] && tmSelectType[iKey] != dbTm[iKey]) {
itemResult.data.tmSelectType[iKey] = tmSelectType[iKey].toString();
}
}
}
}
this.putOrderDelivery(itemResult.data, actionBody.orderNo); this.putOrderDelivery(itemResult.data, actionBody.orderNo);
delete actionBody["isGetContact"]; delete actionBody["isGetContact"];
actionBody.orderStatus = orderItem.orderStatus; actionBody.orderStatus = orderItem.orderStatus;
......
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