feat(wms): 添加调拨订单项目调拨状态字段
- 在 WmsTransferOrderItem 实体中新增 isTransferred 字段用于标识是否已调拨 - 在 WmsTransferOrderItemBo 和 WmsTransferOrderItemVo 中同步添加调拨状态字段 - 在 MyBatis 映射文件中配置 isTransferred 字段映射关系 - 在查询条件中增加调拨状态过滤功能 - 添加调拨单审批状态校验逻辑确保只有审批通过才能调拨 - 在调拨操作完成后设置项目为已调拨状态(isTransferred=1)
This commit is contained in:
@@ -74,4 +74,9 @@ public class WmsTransferOrderItemBo extends BaseEntity {
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 是否已经调拨 0-未调拨 1-已调拨
|
||||
*/
|
||||
private Integer isTransferred;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user