出入移库撤销操作 记录查询

This commit is contained in:
2025-07-18 13:59:36 +08:00
parent 1fee252667
commit b4eca3a3f8
3 changed files with 103 additions and 0 deletions

View File

@@ -51,4 +51,14 @@ public interface IWmsStockIoService {
* 审核出入库/移库单,变更库存,含库存校验
*/
Boolean auditStockIo(Long stockIoId);
/**
* 撤销出入库/移库单,库存回滚
*/
Boolean cancelStockIo(Long stockIoId);
/**
* 根据ioType和stockIoId联查明细
*/
java.util.List<com.klp.domain.vo.WmsStockIoDetailVo> detailByTypeAndId(String ioType, Long stockIoId);
}