feat(wms): 扩展钢卷待处理动作查询功能并完善分卷合卷业务逻辑

- 在WmsCoilPendingActionMapper.xml中新增仓库名称、规格、材质、生产厂家等物料信息字段查询
- 为WmsCoilPendingActionVo添加specification、material、manufacturer等物料属性字段
- 完善分卷合卷业务逻辑,增加对历史卷的分卷限制验证
- 新增validateOriginalCoilsForMerge方法用于合卷前验证原始钢卷数据状态
- 优化实际库区ID更新条件,当状态为1时也清除实际库区绑定
- 移除分卷新卷继承母卷实际库区ID的逻辑
- 增强合卷操作前的原始钢卷数据校验机制
This commit is contained in:
2026-01-14 17:34:58 +08:00
parent f8e15af0fe
commit 7a38091468
3 changed files with 111 additions and 5 deletions

View File

@@ -163,5 +163,44 @@ public class WmsCoilPendingActionVo extends BaseEntity implements Serializable {
private String operatorByName;
/**
* 规格(原料/产品通用)
*/
private String specification;
/**
* 材质(原料/产品通用)
*/
private String material;
/**
* 生产厂家(原料/产品通用)
*/
private String manufacturer;
/**
* 表面处理说明(原料/产品通用)
*/
private String surfaceTreatmentDesc;
/**
* 锌层(原料/产品通用)
*/
private String zincLayer;
/**
* 物品名称(原料名称/产品名称)
*/
private String itemName;
/**
* 物品编码(原料编码/产品编码)
*/
private String itemCode;
private String actualWarehouseName;
}