| | |
| | | |
| | | import cc.mrbird.febs.common.controller.BaseController; |
| | | import cc.mrbird.febs.common.entity.FebsConstant; |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.common.enumerates.SocialPatternLocationTypeEnum; |
| | | import cc.mrbird.febs.common.utils.AppContants; |
| | | import cc.mrbird.febs.common.utils.FebsUtil; |
| | | import cc.mrbird.febs.common.utils.RedisUtils; |
| | | import cc.mrbird.febs.mall.dto.clothes.AdminClothesPrintOrderDto; |
| | | import cc.mrbird.febs.mall.entity.*; |
| | | import cc.mrbird.febs.mall.mapper.*; |
| | | import cc.mrbird.febs.mall.service.ClothesTypeService; |
| | | import cc.mrbird.febs.mall.service.IAdminBannerService; |
| | | import cc.mrbird.febs.mall.vo.AdminLabelSetVo; |
| | | import cc.mrbird.febs.mall.vo.AdminMallOrderVo; |
| | | import cc.mrbird.febs.mall.vo.clothes.AdminClothesDeliverGoodsVo; |
| | | import cc.mrbird.febs.mall.vo.clothes.AdminClothesLocationRemarkVo; |
| | | import cc.mrbird.febs.mall.vo.clothes.AdminClothesPatternRemarkVo; |
| | | import cc.mrbird.febs.mall.vo.clothes.AdminClothesTypeInfoVo; |
| | | import cc.mrbird.febs.mall.vo.clothes.*; |
| | | import cn.hutool.core.collection.CollUtil; |
| | | import cn.hutool.core.util.ObjectUtil; |
| | | import cn.hutool.core.util.StrUtil; |
| | |
| | | return FebsUtil.view("modules/clothesType/orderList"); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 社区列表-查看评论 |
| | | * @return |
| | | */ |
| | | @GetMapping("/orderPrint/{id}") |
| | | @RequiresPermissions("orderPrint:view") |
| | | public String orderPrint(@PathVariable Long id, Model model) { |
| | | |
| | | AdminClothesPrintOrderDto dto = new AdminClothesPrintOrderDto(); |
| | | dto.setId(id); |
| | | AdminClothesPrintOrderVo adminClothesPrintOrderVo = clothesTypeService.printOrderEvent(dto); |
| | | model.addAttribute("orderPrint", adminClothesPrintOrderVo); |
| | | return FebsUtil.view("modules/clothesType/orderPrint"); |
| | | } |
| | | |
| | | /** |
| | | * 订单-发货 |
| | | * @param id |