| | |
| | | * 订单列表 |
| | | * @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/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"); |
| | | } |
| | | |
| | | } |