| | |
| | | |
| | | public static long idFromMember; |
| | | |
| | | public static long idFromRefund; |
| | | |
| | | /** |
| | | * 订单列表 |
| | | * @return |
| | |
| | | return FebsUtil.view("modules/order/orderDetail"); |
| | | } |
| | | |
| | | /** |
| | | * 订单退款 |
| | | * @return |
| | | */ |
| | | @GetMapping("refundList") |
| | | @RequiresPermissions("refundList:view") |
| | | public String refundList() { |
| | | return FebsUtil.view("modules/order/refundList"); |
| | | } |
| | | |
| | | /** |
| | | * 退款详情 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | @GetMapping("seeRefund/{id}") |
| | | public String seeReceiveInfo(@PathVariable long id, Model model) { |
| | | idFromRefund = id; |
| | | return FebsUtil.view("modules/order/Refunding"); |
| | | } |
| | | |
| | | } |