Commit 8a0444e1 by 王昆

dd

parent b7b50492
......@@ -66,7 +66,8 @@ class APIBase extends DocBase {
"inner.statusNotify",
];
var x = lst.indexOf(fullname);
return x >= 0;
// return x >= 0;
return true;
}
async checkAcck(gname, methodname, pobj, query, req) {
var appInfo = null;
......
......@@ -17,18 +17,10 @@ class TestAPI extends APIBase {
sve_deliver_express_no: pobj.guest_mail_no,
sve_deliver_express_img: pobj.guest_mail_img
};
// 客户交付
// 客户交付交付订单状态是1190时的推送信息
return await this.orderSve.sveDeliver(data);
} else if (pobj.status == "1000000") {
let data = {
id: pobj.source_no,
sve_businessmen_company_id: pobj.company_id,
sve_businessmen_customer_id: pobj.customer_id,
sve_businessmen_name: pobj.name,
sve_businessmen_credit_code: pobj.credit_code,
};
// 客户交付
return await this.orderSve.sveBusinessmen(data);
} else if (pobj.status == "1000000" || "2000000") { //建账信息
return await this.orderSve.sveBusinessmen(pobj);
}
return pobj;
}
......
......@@ -189,7 +189,7 @@ class System {
merchant: local + ":3101" + path,
// 订单服务
order: dev + ":3103" + path,
order: local + ":3103" + path,
// 发票服务
invoice: local + ":3105" + path,
......
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