Commit e5d310ec by 王昆

gsb

parent e9f83ff4
......@@ -89,7 +89,13 @@ class XbgApi extends apiBase {
if (!config) {
return;
}
qobj.ecompany_id = (config.signCompanyIds || "").split(",");
qobj.ecompany_id = [];
let ids = (config.signCompanyIds || "").split(",");
for (let id of ids) {
if (id) {
qobj.ecompany_id.push(Number(id));
}
}
}
async setPayCompanyIds(qobj) {
......
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