Commit 5536b53b by 王昆

gsb

parent cc5a115d
...@@ -106,7 +106,15 @@ class XbgApi extends apiBase { ...@@ -106,7 +106,15 @@ class XbgApi extends apiBase {
if (!config) { if (!config) {
return; return;
} }
qobj.busiIds = (config.payCompanyIds || "").split(","); qobj.busiIds = [];
let arr = (config.payCompanyIds || "").split(",");
for (let id of arr) {
if (!id) {
continue;
}
qobj.busiIds.push(id);
}
} }
//合同模板 //合同模板
......
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