feat(wms): 添加原材料在途信息功能

- 在 WmsStockServiceImpl 中添加填充原材料在途信息的方法
- 在 WmsStockVo 中添加在途量字段
- 通过查询采购计划明细来获取在途量
This commit is contained in:
JR
2025-08-11 09:35:36 +08:00
parent b649399399
commit 285c642243
2 changed files with 43 additions and 0 deletions

View File

@@ -86,4 +86,10 @@ public class WmsStockVo {
@ExcelProperty(value = "仓库/库区名称")
private String warehouseName;
/**
* 在途量
*/
@ExcelProperty(value = "在途量")
private BigDecimal onTheWay;
}