| | |
| | | } |
| | | } |
| | | |
| | | @PostMapping("/approval/page/with-product-conditions") |
| | | @ApiOperation("分页查询待审批订单列表(支持产品条件)") |
| | | public Result<Object> getPendingApprovalOrderPageWithProductConditions(@Valid @RequestBody OrderQueryDTO queryDTO) { |
| | | try { |
| | | return Result.success(orderInfoService.getPendingApprovalOrderPageWithProductConditions(queryDTO)); |
| | | } catch (Exception e) { |
| | | log.error("查询待审批订单列表失败", e); |
| | | return Result.error("查询待审批订单列表失败:" + e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | @GetMapping("/detail/{orderId}") |
| | | @ApiOperation("获取订单详情") |
| | | public Result<OrderDetailVO> getOrderDetail( |