diff --git a/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java b/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java index 8b9823324..f9a3c6fa9 100644 --- a/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java +++ b/yudao-module-mall/yudao-module-shop-biz/src/main/java/cn/iocoder/yudao/module/shop/controller/admin/recharge/RechargeOrderController.java @@ -115,7 +115,7 @@ public class RechargeOrderController { @GetMapping("/page") @Operation(summary = "获得订单分页") - @PreAuthorize("@ss.hasPermission('shop:recharge-order:query','shop:recharge-order:refund')") + @PreAuthorize("@ss.hasPermission('shop:recharge-order:query')") @TenantIgnore public CommonResult> getRechargeOrderPage(@Valid RechargeOrderPageReqVO pageVO) { if (!TenantContextHolder.ID_SYSTEM.equals(SecurityFrameworkUtils.getLoginUser().getTenantId())) { @@ -139,7 +139,7 @@ public class RechargeOrderController { @GetMapping("/promoterDraw-excel") @Operation(summary = "导出推广员抽佣统计") - @PreAuthorize("@ss.hasPermission('shop:recharge-order:export')") + @PreAuthorize("@ss.hasPermission('shop:recharge-order:export','shop:recharge-order-refund:export')") @OperateLog(type = EXPORT) @TenantIgnore public void getRechargeOrderExcel(@Valid PromoterDrawReqExcelVO excelVO, HttpServletResponse response) throws IOException {