Commit 29aa74a5 by 王勇飞

gyq

parent 05e8e12d
...@@ -402,10 +402,10 @@ class DeliverybillCtl extends CtlBase { ...@@ -402,10 +402,10 @@ class DeliverybillCtl extends CtlBase {
var deliverInfo = await this.service.findByClientId({ "vftClientId": pobj.customer_id }); var deliverInfo = await this.service.findByClientId({ "vftClientId": pobj.customer_id });
if (deliverInfo) { if (deliverInfo) {
var param = { var param = {
bizNo: pobj.customer_id,//需要根据客户id获取服务示例号 "bizNo": pobj.customer_id,//需要根据客户id获取服务示例号
accountDate: pobj.current_period, "accountDate": pobj.current_period,
status: pobj.status, "status": pobj.status,
errorStatus: -1 "errorStatus": -1
} }
if (pobj.remark) { if (pobj.remark) {
param.remark = pobj.remark; param.remark = pobj.remark;
...@@ -414,13 +414,13 @@ class DeliverybillCtl extends CtlBase { ...@@ -414,13 +414,13 @@ class DeliverybillCtl extends CtlBase {
} }
} }
var pushObj = { var pushObj = {
pushUrl: this.rysUrl + "service/paperPost/confirm", "pushUrl": this.rysUrl + "service/paperPost/confirm",
actionType: "confirm", "actionType": "confirm",
messageBody: param, "messageBody": param,
headData: { "headData": {
'Source': 'GSB' 'Source': 'GSB'
}, },
requestId: uuidv4() "requestId": uuidv4()
} }
return system.queueOper(pushObj); return system.queueOper(pushObj);
} }
...@@ -431,8 +431,4 @@ class DeliverybillCtl extends CtlBase { ...@@ -431,8 +431,4 @@ class DeliverybillCtl extends CtlBase {
} }
}
module.exports = DeliverybillCtl; module.exports = DeliverybillCtl;
\ No newline at end of file
...@@ -117,7 +117,7 @@ class BizoptDao extends Dao { ...@@ -117,7 +117,7 @@ class BizoptDao extends Dao {
obj.business_info.requestId = qobj.requestId; obj.business_info.requestId = qobj.requestId;
} }
if (qobj.mobile && qobj.mobile != 'undefined') { if (qobj.mobile && qobj.mobile != 'undefined') {
obj.business_info.contactsPhone = qobj.mobile; //已经加密 obj.business_info.contactsPhone = qobj.mobile;
} }
//bussiness_info END //bussiness_info END
//other //other
......
...@@ -53,7 +53,7 @@ class DeliverybillDao extends Dao { ...@@ -53,7 +53,7 @@ class DeliverybillDao extends Dao {
filters.push({ filters.push({
delivery_status: { delivery_status: {
$in: [ $in: [
system.SERVERSESTATUS.RECEIVED, system.SERVERSESTATUS.WAITUSERCONFIRM system.SERVERSESTATUS.RECEIVED, system.SERVERSESTATUS.WAITUSERCONFIRM,system.SERVERSESTATUS.INSERVICE
] ]
} }
}); });
......
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