feat(order): 添加订单状态查询功能

- 在 IWmsOrderService接口中新增 queryPageListByStatus 方法
- 在 WmsOrderController 中添加 listByStatus 接口
- 在 WmsOrderServiceImpl 中实现 queryPageListByStatus 方法- 优化查询条件,实现根据订单状态筛选功能
This commit is contained in:
2025-08-12 14:26:54 +08:00
parent 27cb92edd8
commit 2a8733bb2f
3 changed files with 40 additions and 0 deletions

View File

@@ -46,4 +46,6 @@ public interface IWmsOrderService {
* 校验并批量删除订单主信息
*/
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
TableDataInfo<WmsOrderVo> queryPageListByStatus(WmsOrderBo bo, PageQuery pageQuery);
}