Commit 13908b24 by 宋毅

tj

parent 923aadeb
var APIBase = require("../../api.base");
var system = require("../../../system");
var settings = require("../../../../config/settings");
class TaskAction extends APIBase {
constructor() {
super();
this.orderinfoSve = system.getObject("service.dbcorder.orderinfoSve");
}
/**
* 接口跳转-POST请求
* action_process 执行的流程
* action_type 执行的类型
* action_body 执行的参数
*/
async taskNeed(pobj, qobj, req) {
if (!pobj.actionType) {
return system.getResult(null, "actionType参数不能为空");
}
var result = await this.opActionProcess(pobj, pobj.actionType, req);
return result;
}
}
module.exports = TaskAction;
\ No newline at end of file
......@@ -19,6 +19,15 @@ class OrderInfoService extends ServiceBase {
this.push360Sve = system.getObject('service.common.push360Sve');
}
//--------------------task----------------start-------------------
async taskSyncOrderStatus(){
let sql="SELECT * FROM `c_order_info_fq` LIMIT 300";
var this.dao.customQuery(sql);
}
//--------------------task--------------ednd---------------------
//----------------------订单创建-----------start----------------
async createOrder(pobj, orderNo, t) {
this.execClientNew.execLogs("center-order-createOrder-3", pobj, "center-order-doexecMethod-info", null, null);
......
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