|
|
@@ -0,0 +1,182 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
|
|
+ *
|
|
|
+ * Redistribution and use in source and binary forms, with or without
|
|
|
+ * modification, are permitted provided that the following conditions are met:
|
|
|
+ *
|
|
|
+ * Redistributions of source code must retain the above copyright notice,
|
|
|
+ * this list of conditions and the following disclaimer.
|
|
|
+ * Redistributions in binary form must reproduce the above copyright
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * Neither the name of the dreamlu.net developer nor the names of its
|
|
|
+ * contributors may be used to endorse or promote products derived from
|
|
|
+ * this software without specific prior written permission.
|
|
|
+ * Author: Chill 庄骞 (smallchill@163.com)
|
|
|
+ */
|
|
|
+package com.store.goods.controller;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
|
+import com.store.goods.entity.GoodsItems;
|
|
|
+import com.store.goods.entity.OrderItems;
|
|
|
+import com.store.goods.service.IGoodsItemsService;
|
|
|
+import com.store.goods.service.IOrderAddressService;
|
|
|
+import com.store.goods.service.IOrderItemsService;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import io.swagger.annotations.ApiParam;
|
|
|
+import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import javax.validation.Valid;
|
|
|
+
|
|
|
+import org.springblade.core.mp.support.Condition;
|
|
|
+import org.springblade.core.mp.support.Query;
|
|
|
+import org.springblade.core.tool.api.R;
|
|
|
+import org.springblade.core.tool.utils.Func;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.store.goods.entity.Order;
|
|
|
+import com.store.goods.vo.OrderVO;
|
|
|
+import com.store.goods.service.IOrderService;
|
|
|
+import org.springblade.core.boot.ctrl.BladeController;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 订单表 控制器
|
|
|
+ *
|
|
|
+ * @author BladeX
|
|
|
+ * @since 2021-11-24
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@AllArgsConstructor
|
|
|
+@RequestMapping("/order")
|
|
|
+@Api(value = "订单表", tags = "订单表接口")
|
|
|
+public class OrderController extends BladeController {
|
|
|
+
|
|
|
+ private final IOrderService orderService;
|
|
|
+
|
|
|
+ private final IOrderAddressService addressService;
|
|
|
+
|
|
|
+ private final IOrderItemsService orderItemsService;
|
|
|
+
|
|
|
+ private final IGoodsItemsService goodsItemsService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查看订单详情
|
|
|
+ */
|
|
|
+ @GetMapping("/detail")
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation(value = "查看订单详情", notes = "传入order")
|
|
|
+ public R<Order> detail(Order order) {
|
|
|
+ Order detail = orderService.getOne(Condition.getQueryWrapper(order));
|
|
|
+ detail.setOrderAddress(addressService.getById(detail.getAddressId()));
|
|
|
+ LambdaQueryWrapper<OrderItems> itemsLambdaQueryWrapper=new LambdaQueryWrapper<>();
|
|
|
+ itemsLambdaQueryWrapper.eq(OrderItems::getOrderId,detail.getId());
|
|
|
+ itemsLambdaQueryWrapper.eq(OrderItems::getIsDeleted,0);
|
|
|
+ List<OrderItems> list = orderItemsService.list(itemsLambdaQueryWrapper);
|
|
|
+ if(CollectionUtils.isNotEmpty(list))
|
|
|
+ {
|
|
|
+ list.forEach(e->{
|
|
|
+ GoodsItems goodsItems = goodsItemsService.getById(e.getItemsId());
|
|
|
+ e.setPicture(goodsItems.getPriture());
|
|
|
+ e.setCName(goodsItems.getCName());
|
|
|
+ });
|
|
|
+ }
|
|
|
+ detail.setItemList(list);
|
|
|
+ return R.data(detail);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分页 订单表
|
|
|
+ */
|
|
|
+ @GetMapping("/list")
|
|
|
+ @ApiOperationSupport(order = 2)
|
|
|
+ @ApiOperation(value = "平台/收货人-查看订单列表", notes = "传入order")
|
|
|
+ public R<IPage<Order>> list(Order order, Query query) {
|
|
|
+ IPage<Order> pages = orderService.page(Condition.getPage(query), Condition.getQueryWrapper(order));
|
|
|
+ return R.data(pages);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 下单
|
|
|
+ *
|
|
|
+ * */
|
|
|
+ @PostMapping("/createOrder")
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperation(value = "创建订单", notes = "传入order")
|
|
|
+ public R createOrder(@Valid @RequestBody Order order)
|
|
|
+ {
|
|
|
+ orderService.createOrder(order);
|
|
|
+ return R.success("操作成功");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改订单状态
|
|
|
+ *
|
|
|
+ * */
|
|
|
+ @PostMapping("/updateOrderStatus")
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperation(value = "修改订单状态(已收货/发货/退款等)", notes = "传入order")
|
|
|
+ public R updateOrderStatus(@Valid @RequestBody Order order)
|
|
|
+ {
|
|
|
+ orderService.updateOrderStatus(order);
|
|
|
+ return R.success("操作成功");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 自定义分页 订单表
|
|
|
+ *//*
|
|
|
+ @GetMapping("/page")
|
|
|
+ @ApiOperationSupport(order = 3)
|
|
|
+ @ApiOperation(value = "分页", notes = "传入order")
|
|
|
+ public R<IPage<OrderVO>> page(OrderVO order, Query query) {
|
|
|
+ IPage<OrderVO> pages = orderService.selectOrderPage(Condition.getPage(query), order);
|
|
|
+ return R.data(pages);
|
|
|
+ }*/
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增 订单表
|
|
|
+ @PostMapping("/save")
|
|
|
+ @ApiOperationSupport(order = 4)
|
|
|
+ @ApiOperation(value = "新增", notes = "传入order")
|
|
|
+ public R save(@Valid @RequestBody Order order) {
|
|
|
+ return R.status(orderService.save(order));
|
|
|
+ }*/
|
|
|
+/*
|
|
|
+ *//**
|
|
|
+ * 修改 订单表
|
|
|
+ *//*
|
|
|
+ @PostMapping("/update")
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperation(value = "修改", notes = "传入order")
|
|
|
+ public R update(@Valid @RequestBody Order order) {
|
|
|
+ return R.status(orderService.updateById(order));
|
|
|
+ }*/
|
|
|
+
|
|
|
+/* *//**
|
|
|
+ * 新增或修改 订单表
|
|
|
+ *//*
|
|
|
+ @PostMapping("/submit")
|
|
|
+ @ApiOperationSupport(order = 6)
|
|
|
+ @ApiOperation(value = "新增或修改", notes = "传入order")
|
|
|
+ public R submit(@Valid @RequestBody Order order) {
|
|
|
+ return R.status(orderService.saveOrUpdate(order));
|
|
|
+ }*/
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除 订单表
|
|
|
+ */
|
|
|
+ @PostMapping("/remove")
|
|
|
+ @ApiOperationSupport(order = 8)
|
|
|
+ @ApiOperation(value = "删除", notes = "传入ids")
|
|
|
+ public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
|
|
|
+ return R.status(orderService.removeByIds(Func.toLongList(ids)));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|