仓库-批量查看,出库记录根据批次号批量查看功能实现

This commit is contained in:
2024-04-26 15:19:57 +08:00
parent ebc4712da0
commit 9c77c90f5d
4 changed files with 100 additions and 21 deletions

View File

@@ -17,13 +17,13 @@ namespace ZR.Service.mes.wms.IService
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
List<WmGoodsBatchTableDto> GetBatchOutRecordByPackageCodeShort(WmGoodsBatchSearchDto parm);
PagedInfo<WmGoodsBatchTableDto> GetBatchOutRecordByPackageCodeShort(WmGoodsBatchSearchDto parm);
/// <summary>
/// 树表子节点懒加载查询
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
List<WmGoodsBatchTableDto> GetBatchOutRecordTreeLazyByPackageCodeShort(WmGoodsBatchSearchDto parm);
PagedInfo<WmGoodsBatchTableDto> GetBatchOutRecordTreeLazyByPackageCodeShort(WmGoodsBatchSearchDto parm);
}
}