Commit b94ae7ab by 王昆

gsb

parent 02e5ad85
......@@ -68,6 +68,10 @@ class SaasOrderDao extends Dao {
sql.push("AND t1.handle_status = :handle_status");
}
if (params.handle_statuses) {
sql.push("AND t1.handle_status IN (:handle_statuses) ");
}
if (params.saas_merchant_id) {
sql.push("AND t1.merchant_id = :saas_merchant_id");
}
......
......@@ -513,7 +513,6 @@ class SaasOrderService extends ServiceBase {
await self.saasorderpayDao.create(_pay, t);
return 1;
});
}
async mapByCreditCodes(params) {
......@@ -521,7 +520,6 @@ class SaasOrderService extends ServiceBase {
return system.getResultSuccess(rs);
}
async businessmenPage(params) {
let page = {
count: 0,
......
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