Commit 96bdb327 by Sxy

fix: 书写错误

parent 6daeb9a6
......@@ -532,7 +532,7 @@ class TxHandler {
}
async ServiceCreate(datajson) { //获取融易算服务实例到队列
console.log("ServiceCreate----------------------------------------------",datajson);
console.log("ServiceCreate----------------------------------------------", datajson);
var obj = {
"pushUrl": this.bookUrl + "/deliverybillCtl/insertInfo",
"actionType": "insertInfo",
......@@ -548,7 +548,7 @@ class TxHandler {
}
async ServiceUpdate(datajson) { //更新融易算服务信息到队列
console.log("ServiceUpdate----------------------------------------------",datajson);
console.log("ServiceUpdate----------------------------------------------", datajson);
var obj = {
"pushUrl": this.bookUrl + "/deliverybillCtl/updateServer",
"actionType": "updateServer",
......@@ -565,9 +565,9 @@ class TxHandler {
//融易算创建需求
async LeadsCreate(datajson) {
console.log("LeadsCreate----------------------------------------------",datajson);
console.log("LeadsCreate----------------------------------------------", datajson);
var obj = {
"pushUrl": this.bookUrl + "/bizOptCtl/insertInfo",
"pushUrl": this.bookUrl + "/bizoptCtl/insertInfo",
"actionType": "insertInfo",
"messageBody": datajson,
//"requestId":datajson.requestId,
......@@ -582,7 +582,7 @@ class TxHandler {
//融易算更新需求状态
async LeadsUpdate(datajson) {
console.log("LeadsUpdate----------------------------------------------",datajson);
console.log("LeadsUpdate----------------------------------------------", datajson);
var obj = {
"pushUrl": this.bookUrl + "/bizoptCtl/updatepayStatusByDemandCode",
"actionType": "updatepayStatusByDemandCode",
......@@ -600,7 +600,7 @@ class TxHandler {
// 融易算服务状态变更通知
async ServiceStatusNotify(datajson) {
console.log("ServiceStatusNotify----------------------------------------------",datajson);
console.log("ServiceStatusNotify----------------------------------------------", datajson);
let ab = Object.assign({}, datajson);
ab.status = ab.status === 6 ? "inserivice" : "closed";
var obj = {
......@@ -619,7 +619,7 @@ class TxHandler {
//融易算报表确认
async ConfirmReport(datajson) {
console.log("ConfirmReport----------------------------------------------",datajson);
console.log("ConfirmReport----------------------------------------------", datajson);
var messageBody = datajson;
messageBody.dataType = "2";
messageBody.rysCheck = "1";
......@@ -640,7 +640,7 @@ class TxHandler {
//融易算报税确认
async ConfirmTax(datajson) {
console.log("ConfirmTax----------------------------------------------",datajson);
console.log("ConfirmTax----------------------------------------------", datajson);
var messageBody = datajson;
messageBody.dataType = "3";
messageBody.rysCheck = "1";
......@@ -661,7 +661,7 @@ class TxHandler {
//融易算接收票据快递单号
async ReceivePaperPost(datajson) {
console.log("ReceivePaperPost----------------------------------------------",datajson);
console.log("ReceivePaperPost----------------------------------------------", datajson);
var obj = {
"pushUrl": this.bookUrl + "/deliverybillCtl/receivePaperPost",
"actionType": "receivePaperPost",
......
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