Commit 53237f19 authored by yanghao's avatar yanghao

chore: 客户详情中订单tag查询方式修改为订单页面查询一致的条件

parent ae42f7c0
...@@ -328,9 +328,9 @@ public class OrderController { ...@@ -328,9 +328,9 @@ public class OrderController {
@GetMapping("/customer-order-page") @GetMapping("/customer-order-page")
@ApiOperation("客户详情订单分页") @ApiOperation("客户详情订单分页")
// @PreAuthorize("@ss.hasPermission('ecw:order:query')") // @PreAuthorize("@ss.hasPermission('ecw:order:query')")
public CommonResult<PageResult<OrderBackPageVO>> getCustomerOrderPage(OrderQueryVO query, PageVO page) { public CommonResult<PageResult<OrderBackPageVO>> getCustomerOrderPage(OrderQueryDTO query, PageVO page) {
query.setUserType(UserTypeEnum.ADMIN.getValue()); query.setUserType(UserTypeEnum.ADMIN.getValue());
PageResult<OrderBackPageVO> pageResult = orderQueryService.orderPage(query, page); PageResult<OrderBackPageVO> pageResult = orderQueryService.myOrderPage(query, page);
return success(pageResult); return success(pageResult);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment