Commit a3f3b1a5 by 兰国旗

非套餐的状态

parent 517e4cdb
......@@ -15,6 +15,14 @@ class RegCenterOrderService extends AppServiceBase {
this.baiduclient = system.getObject("util.baiduClient");
this.baiduRegClient = system.getObject("util.baiduRegClient");
this.utilsOrderSve = system.getObject("service.utilsSve.utilsOrderSve");
this.regDeliveryStatus = {
701: 'RECEIVED', //已接单
702: 'COLLECTING', //材料收集环节
703: 'AUDITING', //工商审核环节
704: 'ENGRAVING', //刻章环节
705: 'SUCCESS', //已完成
706: 'ACTIVE' //服务中
}
};
//调用center-order
......@@ -582,7 +590,7 @@ class RegCenterOrderService extends AppServiceBase {
//推送正常公司注册数据至百度
pushObj = {
orderNo: res.data.bizId,
status: res.data.deliveryContent.status,
status: this.regDeliveryStatus[pobj.status],
deliverContent: deliverContent,
consultType: pobj.actionBody.consultType
};
......
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