feat(wms): 新增钢卷发货撤回功能

- 在 IWmsMaterialCoilService 中添加 withdrawExportCoil 方法
- 实现 WmsMaterialCoilController 的 withdrawExport 接口
- 添加 WmsMaterialCoilMapper 的 updateForWithdrawExport 方法
- 创建 XML 映射文件中的 updateForWithdrawExport SQL 更新语句
- 完成 WmsMaterialCoilServiceImpl 中的 withdrawExportCoil 业务逻辑实现
- 添加参数校验、存在性检查和状态验证逻辑
This commit is contained in:
2026-01-11 17:42:15 +08:00
parent 5c0b1793f0
commit e4df713ffb
5 changed files with 59 additions and 0 deletions

View File

@@ -53,5 +53,15 @@ public interface WmsMaterialCoilMapper extends BaseMapperPlus<WmsMaterialCoilMap
* @return 导出数据列表
*/
List<com.klp.domain.vo.WmsMaterialCoilExportVo> selectExportList(@Param("ew")QueryWrapper<WmsMaterialCoil> lqw);
/**
* 更新钢卷发货撤回:将发货时间置空,状态改为指定值
*
* @param coilId 钢卷ID
* @param status 目标状态
* @return 影响行数
*/
int updateForWithdrawExport(@Param("coilId") Long coilId, @Param("status") Integer status);
}