Commit 410aebec by 庄冰

tj

parent 91f02175
...@@ -203,15 +203,15 @@ class CenterorderService extends AppServiceBase { ...@@ -203,15 +203,15 @@ class CenterorderService extends AppServiceBase {
/** /**
* 推送ICP交付信息至企业宝(交付系统) * 推送ICP交付信息至企业宝(交付系统)
*/ */
async pushIcpOrderDelivery2Qfb(orderNo, needsolution) { async pushIcpOrderDelivery2Qfb(orderNo, needsolution,status) {
var pushObj = { // var pushObj = {
orderNo: orderNo, // orderNo: orderNo,
needsolution: needsolution.solutionContent // needsolution: needsolution.solutionContent
}; // };
var url = this.qifubaoUrl + "xxx/xxxxx"; // var url = this.qifubaoUrl + "xxx/xxxxx";
var rtn = await this.execClient.execPost(pushObj, url); // var rtn = await this.execClient.execPost(pushObj, url);
var data = JSON.parse(rtn.stdout); // var data = JSON.parse(rtn.stdout);
return system.getResultSuccess(data); // return system.getResultSuccess(data);
} }
async icppaysuccess(pobj) { async icppaysuccess(pobj) {
......
...@@ -55,17 +55,7 @@ class UtilsNeedService extends AppServiceBase { ...@@ -55,17 +55,7 @@ class UtilsNeedService extends AppServiceBase {
return result; return result;
} }
//调用center-order
async reqCenterOrderApi(pobj, reqUrl) {
var url = this.centerOrderUrl + "action/icpapi/springBoard";
if (reqUrl) {
var url = this.centerOrderUrl + reqUrl;
}
pobj.actionType = "receiveIcpFeedback";
var rtn = await this.execClient.execPost(pobj, url);
var data = JSON.parse(rtn.stdout);
return data;
}
//调用center-order icp需求反馈 //调用center-order icp需求反馈
async reqCenterOrderQcApi(pobj, reqUrl) { async reqCenterOrderQcApi(pobj, reqUrl) {
...@@ -119,17 +109,17 @@ class UtilsNeedService extends AppServiceBase { ...@@ -119,17 +109,17 @@ class UtilsNeedService extends AppServiceBase {
return result; return result;
} }
//调用center-order icp需求反馈 // //调用center-order icp需求反馈
async reqCenterOrderApi(pobj, reqUrl) { // async reqCenterOrderApi(pobj, reqUrl) {
var url = this.centerOrderUrl + "action/icpapi/springBoard"; // var url = this.centerOrderUrl + "action/icpapi/springBoard";
if (reqUrl) { // if (reqUrl) {
var url = this.centerOrderUrl + reqUrl; // var url = this.centerOrderUrl + reqUrl;
} // }
pobj.actionType = "receiveIcpFeedback"; // pobj.actionType = "receiveIcpFeedback";
var rtn = await this.execClient.execPost(pobj, url); // var rtn = await this.execClient.execPost(pobj, url);
var data = JSON.parse(rtn.stdout); // var data = JSON.parse(rtn.stdout);
return data; // return data;
} // }
/** /**
* 获取需求详情 * 获取需求详情
......
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