feat(order): 添加订单状态查询功能
- 在 IWmsOrderService接口中新增 queryPageListByStatus 方法 - 在 WmsOrderController 中添加 listByStatus 接口 - 在 WmsOrderServiceImpl 中实现 queryPageListByStatus 方法- 优化查询条件,实现根据订单状态筛选功能
This commit is contained in:
@@ -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);
|
||||
}
|
||||
/**
|
||||
* 导出订单主列表
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user