feat(wms): 生产任务列表增加联查功能

- 在 WmsProductionTaskMapper 中添加 selectVoPagePlus 方法,实现联查查询
- 更新 WmsProductionTaskBo 和 WmsProductionTaskVo,增加联查相关字段
- 修改 WmsProductionTaskServiceImpl 中的 queryPageList 方法,使用新的联查查询
- 更新 WmsStockMapper.xml 中的查询语句,优化库存查询
This commit is contained in:
2025-08-26 16:18:58 +08:00
parent 4c748a537a
commit 0c746478a0
6 changed files with 143 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
alter table wms_production_task
modify order_id bigint null comment '订单ID';
alter table wms_production_task
modify order_item_id bigint null comment '订单明细ID';