Commit 7f4cff08 by 王栋源

wdy

parent cdddad6b
......@@ -77,7 +77,7 @@ class QcCenterOrderService extends AppServiceBase {
},
appInfo: pobj.appInfo
}
this.utilsPushSve.aliBusiness2Delivery(reqParams, "updateChanceStatus");
this.utilsPushSve.pushBusiness2DeliverSystem(reqParams, "updateChanceStatus");
return system.getResultSuccess();
}
return res;
......
......@@ -217,7 +217,7 @@ class UtilsNeedService extends AppServiceBase {
},
appInfo: pobj.appInfo
}
self.utilsPushSve.aliBusiness2Delivery(reqParams, "updateChanceStatus");
self.utilsPushSve.pushBusiness2DeliverSystem(reqParams, "updateChanceStatus");
// 推送ali
var a = await self.aliclient.reqbyget({ action: "CloseIntention", reqbody: { BizId: actionBody.channelNeedNo, Note: actionBody.note }, apiVersion: "2019-05-08" });
......@@ -414,6 +414,21 @@ class UtilsNeedService extends AppServiceBase {
return system.getResultSuccess(res);
}
async test(pobj) {
let res = await this.aliclient.reqbyget({
action: "QueryTradeIntentionUserList", reqbody: {
BeginTime: pobj.actionBody.BeginTime ? pobj.actionBody.BeginTime : "",
EndTime: pobj.actionBody.EndTime ? pobj.actionBody.EndTime : "",
BizId: "20200817115056000001",
Type: "5",
PageNum: pobj.actionBody.pageNum || 1,
PageSize: pobj.actionBody.pageSize || 10,
}, apiVersion: "2019-05-08"
});
return system.getResultSuccess(res);
}
urlSplit(url) {
var arr = url.split("?")[1]; //根据?跟个url
......@@ -442,6 +457,7 @@ module.exports = UtilsNeedService;
// var a=new UtilsNeedService();
// a.needCloseIcp({actionBody:{channelNeedNo:20200804200124000001,note:"ceshifankui"}},{channelNeedNo:20200803095203000001,note:"ceshifankui"});
var a=new UtilsNeedService();
a.test({actionBody:{intentionBizId:"20200803095203000001",userFeedBack:true}});
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