Commit bfab015a by 孙亚楠

d

parent 7880bb54
...@@ -163,8 +163,8 @@ class EorderService extends ServiceBase { ...@@ -163,8 +163,8 @@ class EorderService extends ServiceBase {
try{ try{
let orderProperties = {id:orderBean.id,audit_status:this.trim(params.audit_status),audit_remark:this.trim(params.audit_remark) || ""}; let orderProperties = {id:orderBean.id,audit_status:this.trim(params.audit_status),audit_remark:this.trim(params.audit_remark) || ""};
orderProperties.live_status = params.audit_status == '20' ? '20' : '30'; orderProperties.live_status = params.audit_status == '20' ? params.audit_status : '30';
await orderBean.dao.update(orderProperties); await this.dao.update(orderProperties);
return system.getResultSuccess(); return system.getResultSuccess();
}catch (e) { }catch (e) {
console.log(e); console.log(e);
......
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