Commit 9a97c4cb by 任晓松

360

parent b34d1519
...@@ -205,13 +205,13 @@ class QcCenterOrderService extends AppServiceBase { ...@@ -205,13 +205,13 @@ class QcCenterOrderService extends AppServiceBase {
async serviceProviderNotification(pobj) { async serviceProviderNotification(pobj) {
var res = await this.reqCenterOrderApi(pobj, "action/qcapi/springBoard"); var res = await this.reqCenterOrderApi(pobj, "action/qcapi/springBoard");
if (res && res.status == 0 && res.data) { if (res && res.status == 0 && res.data) {
pobj.actionType = "getPayOrderInfo"; pobj.actionType = "getOrderByOrderNo";
let orderUrl = settings.centerOrderUrl() + "action/order/springBoard"; let orderUrl = settings.centerOrderUrl() + "action/order/springBoard";
let orderResult = await this.restPostUrl(pobj, orderUrl); let orderResult = await this.restPostUrl(pobj, orderUrl);
if(orderResult.status !=0){ if(orderResult.status !=0){
return system.getResultFail(-1,'查询订单失败') return system.getResultFail(-1,'查询订单失败')
} }
let uapp_id = orderResult.data.receiptVoucher.uapp_id; let uapp_id = orderResult.data.uapp_id;
pobj.appInfo = {uapp_id : uapp_id}; pobj.appInfo = {uapp_id : uapp_id};
pobj.actionType = "getAppInterface"; pobj.actionType = "getAppInterface";
var reqUrl = settings.centerAppUrl() + "action/opProduct/springBoard"; var reqUrl = settings.centerAppUrl() + "action/opProduct/springBoard";
......
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