Commit 29aa74a5 by 王勇飞

gyq

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