fix(wms/receivable): 修正应收货物计划查询客户信息字段映射

- 将客户名称查询字段从c.name调整为c.company_name以匹配CRM客户表结构
- 新增客户编号customerCode字段映射,补充客户信息完整性
- 调整关联表从wms_customer切换为crm_customer确保数据一致性
This commit is contained in:
2026-05-22 16:09:50 +08:00
parent e084576f1e
commit 749ae46490
2 changed files with 6 additions and 3 deletions

View File

@@ -83,6 +83,8 @@ public class WmsReceivableVo {
/**
* 客户名称
*/
@ExcelProperty(value = "客户名称")
private String customerName;
// 客户编号
private String customerCode;
}