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

@@ -45,6 +45,14 @@ public class WmsOrderController extends BaseController {
return iWmsOrderService.queryPageList(bo, pageQuery);
}
/**
* order_status不是零就查出来
* 新接口 不是预订单的
*/
@GetMapping("/listByStatus")
public TableDataInfo<WmsOrderVo> listByStatus(WmsOrderBo bo, PageQuery pageQuery) {
return iWmsOrderService.queryPageListByStatus(bo, pageQuery);
}
/**
* 导出订单主列表
*/