Commit 04cfeb5e by 孙亚楠

dd

parent 99749d01
...@@ -986,11 +986,21 @@ class OorderstatusService extends ServiceBase { ...@@ -986,11 +986,21 @@ class OorderstatusService extends ServiceBase {
} }
} }
/**
* 交付商业务完成
* @param {*} params
*/
async businessCompletion(params){
try {
let _order = params._order;
_order.status=this.trim(params.status);
await _order.save();
return system.getResultSuccess();
} catch (error) {
console.log(error);
return system.getResult(null,`系统错误`);
}
}
} }
......
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