| | |
| | | @RequiresPermissions("deliverGoods:update") |
| | | public String deliverGoods(@PathVariable long id, Model model) { |
| | | AdminMallOrderVo data = adminMallOrderService.getMallOrderInfoById(id); |
| | | data.setExpressCom("中通快递"); |
| | | model.addAttribute("deliverInfo", data); |
| | | return FebsUtil.view("modules/order/deliverGoods"); |
| | | } |
| | |
| | | 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"); |
| | | } |
| | | |
| | | } |