fix: 🧩 修复bug

This commit is contained in:
2025-10-11 10:51:20 +08:00
parent 190be3b7ce
commit ef38880743
8 changed files with 113 additions and 30 deletions

View File

@@ -228,8 +228,10 @@ const getCustomers = async (keywords: any, item: any) => {
let options: any = [];
data.forEach((it: any) => {
options.push({
value: it.customer_number,
label: it.customer_name
value: it.customer_number + "_" + it.use_org_number,
label: it.customer_name + " " + `(${it.use_org_name})`,
id: it.use_org_number,
useOrgName: it.use_org_name
});
});
item.options = options;