Commit ec2cffd0 by 孙亚楠

dd

parent 8cf9200d
......@@ -593,6 +593,12 @@ class OorderstatusService extends ServiceBase {
* @status String 下一个订单状态
*/
async chapterEngraving(params) {
if (!params.id) {
return system.getResult(null, `参数错误 订单ID不能为空`);
}
if (!params.status) {
return system.getResult(null, `参数错误 状态码不能为空`);
}
let _order = params._order;
_order.status = this.trim(params.status);
try {
......
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