Commit 4103b92a by 孙亚楠

dd

parent 2cee0266
......@@ -104,7 +104,7 @@ class ActionAPI extends APIBase {
break;
// 统计数据(平台)
case "statTransData": //数据简报
case "statTransData": //数据简报 (本月交易数据)
opResult = await this.oorderSve.statTransData(action_body);
break;
case "needToBeDealtWith": //待办事项
......
......@@ -3,7 +3,8 @@ const Dao = require("../../dao.base");
class OorderdeliverDao extends Dao {
constructor() {
super(Dao.getModelName(OorderdeliverDao));
this.ORDER_HANDING = ['1030', '1040', '1050', '1060', '1070', '1080', '1090', '1100', '1110', '1120', '1130'];
this.ORDER_HANDING = ['1030', '1040', '1050', '1060', '1070', '1080', '1090', '1100', '1110', '1120', '1130', '1140', '1150', '1160', '1170'];
this.PLATE_FORM_AUDIT_DETERMINE = "1180";
}
/**
......@@ -150,7 +151,7 @@ class OorderdeliverDao extends Dao {
sql.push("SELECT");
sql.push("COUNT(1) as order_complete_count ,b.deliver_id");
sql.push("FROM `o_order_deliver` b inner join o_order a on b.id = a.deliver_id");
sql.push("WHERE 1 = 1 and a.status = '1080' ");
sql.push(`WHERE 1 = 1 and a.status = '${this.PLATE_FORM_AUDIT_DETERMINE}' `);
var params = {
begin: begin,
......
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