Commit 6f5182bb by 孙亚楠

dd

parent 971ecdc9
...@@ -523,6 +523,21 @@ class OorderstatusService extends ServiceBase { ...@@ -523,6 +523,21 @@ class OorderstatusService extends ServiceBase {
} }
/** /**
* 分配业务员完成
* @param {*} params
*/
async deliverAssignSalesmanComplete(params){
let _order = params._order;
_order.status = this.trim(params.status);
try {
let res = await _order.save();
return system.getResult(res);
} catch (error) {
console.log(error);
return system.getResult(null, `系统错误 错误信息 ${error}`);
}
}
/**
* 工商注册中 * 工商注册中
* @param {*} params * @param {*} params
* @id 订单ID * @id 订单ID
......
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