Commit de74d45e by 孙亚楠

dd

parent ae5e8fff
...@@ -20,7 +20,8 @@ class TestAPI extends APIBase { ...@@ -20,7 +20,8 @@ class TestAPI extends APIBase {
// 客户交付交付订单状态是1190时的推送信息 // 客户交付交付订单状态是1190时的推送信息
return await this.orderSve.sveDeliver(data); return await this.orderSve.sveDeliver(data);
} else if (pobj.status == "1000000" || "2000000") { //建账信息 } else if (pobj.status == "1000000" || "2000000") { //建账信息
return await this.orderSve.sveBusinessmen(pobj); let res = await this.orderSve.sveBusinessmen(pobj);
return res;
} }
return pobj; return pobj;
} }
......
...@@ -194,10 +194,10 @@ class System { ...@@ -194,10 +194,10 @@ class System {
common: dev + ":3102" + path, common: dev + ":3102" + path,
// 商户服务 // 商户服务
merchant: local + ":3101" + path, merchant: dev + ":3101" + path,
// 订单服务 // 订单服务
order: dev + ":3103" + path, order: local + ":3103" + path,
// 发票服务 // 发票服务
invoice: local + ":3105" + path, invoice: local + ":3105" + path,
...@@ -206,7 +206,7 @@ class System { ...@@ -206,7 +206,7 @@ class System {
uc: dev + ":3106" + path, uc: dev + ":3106" + path,
// 交易 // 交易
trade: local + ":3107" + path, trade: dev + ":3107" + path,
} }
} else { } else {
return { return {
......
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