Commit cb6d7bf7 by 王昆

gsb

parent 30d38ea5
...@@ -138,6 +138,9 @@ class ActionAPI extends APIBase { ...@@ -138,6 +138,9 @@ class ActionAPI extends APIBase {
case "saasOrderPage": // 订单信息 case "saasOrderPage": // 订单信息
opResult = await this.saasorderSve.pageByCondition(action_body); opResult = await this.saasorderSve.pageByCondition(action_body);
break; break;
case "saasOrderMapByIds": // 订单信息
opResult = await this.saasorderSve.mapByIds(action_body);
break;
case "saasOrderBulkAudit": // 订单信息 case "saasOrderBulkAudit": // 订单信息
opResult = await this.saasorderSve.bulkAudit(action_body); opResult = await this.saasorderSve.bulkAudit(action_body);
break; break;
......
...@@ -266,7 +266,7 @@ class SaasOrderService extends ServiceBase { ...@@ -266,7 +266,7 @@ class SaasOrderService extends ServiceBase {
if (!params.ids || params.ids.length == 0) { if (!params.ids || params.ids.length == 0) {
return system.getResultSuccess({}); return system.getResultSuccess({});
} }
let rs = await this.dao.mapByIds(params.ids); let rs = await this.dao.mapByIds(params.ids, params.attrs);
return system.getResultSuccess(rs); return system.getResultSuccess(rs);
} }
......
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