Commit 63cb3931 by 孙亚楠

d

parent e7633e41
......@@ -138,7 +138,7 @@ class SaasOrderDao extends Dao {
sql.push("AND handle_status IN (:handle_status)");
}
if (params.saas_merchant_id) {
sql.push("AND saas_merchant_id IN (:saas_merchant_id)");
sql.push("AND merchant_id IN (:saas_merchant_id)");
}
if (params.unInvoice) {
sql.push("AND saas_invoice_id = ''");
......
......@@ -588,7 +588,7 @@ class SaasOrderService extends ServiceBase {
return system.getResultSuccess(page);
}
async byIds(params) {
async itemByIds(params) {
let list = await this.dao.byIds(params);
return system.getResultSuccess(list);
}
......
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