Commit 19720a7e by 孙亚楠

d

parent a8647dc1
...@@ -281,7 +281,9 @@ class ObusinessmenService extends ServiceBase { ...@@ -281,7 +281,9 @@ class ObusinessmenService extends ServiceBase {
for (let item of list) { for (let item of list) {
let order = orderMap[item.order_id] || {}; let order = orderMap[item.order_id] || {};
item.showSign = this.ASSIGN_STATUS.indexOf(order.status.toString()) != -1; if(order.hasOwnProperty("status")){
item.showSign = this.ASSIGN_STATUS.indexOf(order.status.toString()) != -1;
}
} }
} }
......
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