Commit dc67ab3c by 庄冰

aaa

parent 7140aeed
......@@ -5,7 +5,6 @@ class TmOrderAPI extends APIBase {
constructor() {
super();
this.opPlatformUtils = system.getObject("util.businessManager.opPlatformUtils");
this.orderSve = system.getObject("service.dborder.orderSve");
this.ordertmproductSve = system.getObject("service.dborder.ordertmproductSve");
this.customerinfoSve = system.getObject("service.dborder.customerinfoSve");
this.customercontactsSve = system.getObject("service.dborder.customercontactsSve");
......@@ -62,7 +61,7 @@ class TmOrderAPI extends APIBase {
opResult = await this.toolSve.decryptStr(req.app, action_body.opStr);
break;
case "op1688ChannelPushOrder"://处理渠道订单信息
opResult = await this.orderSve.op1688ChannelPushOrderTest(action_body, req);
opResult = await this.ordertmproductSve.op1688ChannelPushOrder(action_body);
if (opResult.status == 0) {
opResult.data = null;
var encryptResult = await this.toolSve.encryptStr(req.app, action_body.channelUserId);
......@@ -192,7 +191,7 @@ class TmOrderAPI extends APIBase {
var rc = system.getObject("util.execClient");
var obj = pobj.actionBody;
var user = obj.user;
obj["channelUserId"] = user.channelUserId;
obj["channelUserId"] = obj.channelUserId;
obj["channelCode"] = pobj.actionProcess;
var rtn = null;
try {
......
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