仓库-出库单,出库记录,批量查看,成品库等功能优化调整,出库逻辑调整

This commit is contained in:
2024-04-29 17:00:38 +08:00
parent c99118ea02
commit cffe4b138f
10 changed files with 352 additions and 17 deletions

View File

@@ -60,6 +60,18 @@ namespace ZR.Service.mes.wms.IService
/// <param name="parm"></param>
/// <returns></returns>
PagedInfo<WmGoodsBatchTableDto> GetBatchOutRecordTreeLazyByPartnumber(WmGoodsBatchSearchDto parm);
/// <summary>
/// 9.树表最外层查询(出库记录根据出库单号聚合)
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
PagedInfo<WmGoodsBatchTableDto> GetBatchOutRecordByShipmentNum(WmGoodsBatchSearchDto parm);
/// <summary>
/// 10.树表子节点懒加载查询(出库记录根据出库单号聚合)
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
PagedInfo<WmGoodsBatchTableDto> GetBatchOutRecordTreeLazyByShipmentNum(WmGoodsBatchSearchDto parm);
}
}

View File

@@ -44,5 +44,7 @@ namespace ZR.Service.mes.wms.IService
int ModifyInventoryQuantity(string id, int stack_num);
PagedInfo<WmGoodsNowProductionDictDto> GetDictData(WmGoodsNowProductionDictDto parm);
}
}