Commit 18eb0f46 by 王昆

Merge branch 'xggsve-order' of gitlab.gongsibao.com:jiangyong/zhichan into xggsve-order

parents 21caea0e e4d0a230
......@@ -288,7 +288,7 @@ class ObusinessmenService extends ServiceBase {
_obusinessmen.name = this.trim(params.name);
}
if(params.credit_code){
_obusinessmen.credit_code = this.trim(params.credit_code);
_obusinessmen.credit_code = this.trim(params.credit_code).toUpperCase();
}
if(params.legal_name){
_obusinessmen.legal_name = this.trim(params.legal_name);
......@@ -369,7 +369,7 @@ class ObusinessmenService extends ServiceBase {
}
async mapByCreditCodes(params) {
let rs = this.dao.mapByCreditCodes(params.creditCodes, params.attrs) || {};
let rs = await this.dao.mapByCreditCodes(params.creditCodes, params.attrs) || {};
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