出库修改调整

This commit is contained in:
秦鸿展
2026-02-02 14:58:53 +08:00
parent 29aa101654
commit 558fdde064
6 changed files with 593 additions and 9 deletions
@@ -43,7 +43,8 @@ public class MaterialInventoryApi extends BaseController {
//转换实体
MaterialInventoryDO materialInventoryDO = materialInventoryAssembler.toDO(materialInventoryDTO);
startPage();
List<MaterialInventoryPO> list = materialInventoryApplicationService.queryList(materialInventoryDO);
// 使用带批次属性的查询方法,批次属性值从库存表中获取
List<MaterialInventoryPO> list = materialInventoryApplicationService.queryListWithBatchAttributes(materialInventoryDO);
return getDataTable(list);
}