Commit cc79359e by 王勇飞

gyq

parent e3273ba0
...@@ -602,7 +602,7 @@ class TxHandler { ...@@ -602,7 +602,7 @@ class TxHandler {
async ServiceStatusNotify(datajson) { async ServiceStatusNotify(datajson) {
console.log("ServiceStatusNotify----------------------------------------------", datajson); console.log("ServiceStatusNotify----------------------------------------------", datajson);
let ab = Object.assign({}, datajson); let ab = Object.assign({}, datajson);
ab.status = ab.status === 6 ? "inservice" : "closed"; ab.status = parseInt(ab.status) === 6 ? "inservice" : "closed";
var obj = { var obj = {
"pushUrl": this.bookUrl + "/deliverybillCtl/notifyServiceStatusChange", "pushUrl": this.bookUrl + "/deliverybillCtl/notifyServiceStatusChange",
"actionType": "notifyServiceStatusChange", "actionType": "notifyServiceStatusChange",
......
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