feat(wms): 添加发货人字段并优化钢卷导出逻辑

- 在WmsMaterialCoilDeliveryExportVo中新增exportBy发货人字段
- 在数据库查询映射中添加export_by字段映射
- 优化导出逻辑,根据状态判断替换日期字段
- 添加发货时间、更新时间、创建时间的优先级处理
- 对历史数据的库区名称进行空值处理
- 完善钢卷导出列表的数据处理流程
This commit is contained in:
2026-01-29 16:58:40 +08:00
parent 5868b63d81
commit 5ab74fbcf1
3 changed files with 36 additions and 2 deletions

View File

@@ -23,6 +23,10 @@ public class WmsMaterialCoilDeliveryExportVo extends WmsMaterialCoilExportVo {
*/
private Long coilId;
// 发货人
@ExcelProperty(value = "发货人")
private String exportBy;
// -------------------- 发货计划plan --------------------
private Long planId;