| | |
| | | * 订单列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("orderRefundList") |
| | | @RequiresPermissions("orderRefundList:view") |
| | | public String orderRefundList() { |
| | | return FebsUtil.view("modules/order/orderRefundList"); |
| | | } |
| | | |
| | | /** |
| | | * 订单列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("orderList") |
| | | @RequiresPermissions("orderList:view") |
| | | public String orderList() { |
| | | return FebsUtil.view("modules/order/orderList"); |
| | | } |
| | | |
| | | /** |
| | | * 评论列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("commentList") |
| | | @RequiresPermissions("commentList:view") |
| | | public String commentList() { |
| | | return FebsUtil.view("modules/order/commentList"); |
| | | } |
| | | |
| | | /** |
| | |
| | | return FebsUtil.view("modules/order/refundOrderDetail"); |
| | | } |
| | | |
| | | /** |
| | | * 退款记录-收款方式 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | @GetMapping("refundPayInfo/{id}") |
| | | @RequiresPermissions("refundPayInfo:update") |
| | | public String refundPayInfo(@PathVariable long id, Model model) { |
| | | AdminMallMemberPaymentVo data = adminMallOrderService.getMallMemberRefundPayInfoByFlowId(id); |
| | | model.addAttribute("refundPayInfo", data); |
| | | return FebsUtil.view("modules/order/refundPayInfo"); |
| | | } |
| | | |
| | | /** |
| | | * 订单列表-统计商品份数 |
| | | * @return |
| | | */ |
| | | public static String orderIdsStr; |
| | | @GetMapping("/goodsStatistics/{statistics}") |
| | | @RequiresPermissions("goodsStatistics:update") |
| | | public String goodsStatistics(@PathVariable String statistics, Model model) { |
| | | orderIdsStr = statistics; |
| | | return FebsUtil.view("modules/order/goodsStatistics"); |
| | | } |
| | | |
| | | } |