package com.ruoyi.order.controller;
|
|
|
import com.alibaba.fastjson2.JSONObject;
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
import com.ruoyi.account.api.feignClient.UserAddressClient;
|
import com.ruoyi.account.api.model.UserAddress;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.common.core.web.controller.BaseController;
|
import com.ruoyi.common.core.web.page.TableDataInfo;
|
import com.ruoyi.common.security.service.TokenService;
|
import com.ruoyi.order.enums.OrderStatus;
|
import com.ruoyi.order.model.Order;
|
import com.ruoyi.order.service.OrderService;
|
import com.ruoyi.order.vo.OrderDetailVO;
|
import com.ruoyi.order.vo.OrderVO;
|
import com.ruoyi.system.api.model.LoginUser;
|
import io.swagger.annotations.*;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.annotation.Resource;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 前端控制器
|
* </p>
|
*
|
* @author luodangjia
|
* @since 2024-11-21
|
*/
|
@Api(tags = "订单")
|
@RestController
|
@RequestMapping("/order")
|
public class OrderController extends BaseController {
|
@Resource
|
private OrderService orderService;
|
@Resource
|
private TokenService tokenService;
|
@Resource
|
private UserAddressClient addressClient;
|
|
|
/**
|
* 我的订单列表
|
*/
|
@ApiOperation(value = "我的订单列表", tags = {"小程序-个人中心-我的订单"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "订单状态", name = "status", required = true, dataType = "int"),
|
})
|
@GetMapping("/getMyOrderList")
|
public TableDataInfo<OrderVO> getMyOrderList(@ApiParam("订单状态") Integer status){
|
startPage();
|
LoginUser loginUserApplet = tokenService.getLoginUserApplet();
|
return getDataTable(orderService.selectOrderListByUserId(status, loginUserApplet.getUserid()));
|
}
|
|
/**
|
* 通过订单ids获取订单列表
|
*/
|
@PostMapping("/getOrderListByIds")
|
public R<List<Order>> getOrderListByIds(@RequestBody List<Long> ids){
|
return R.ok(orderService.listByIds(ids));
|
}
|
|
/**
|
* 订单详情
|
*/
|
@ApiOperation(value = "订单详情", tags = {"小程序-订单详情"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "订单id", name = "orderId", required = true, dataType = "int"),
|
})
|
@GetMapping("/detail/{orderId}")
|
public R<OrderDetailVO> detail(@PathVariable("orderId") Long orderId){
|
return R.ok(orderService.getOrderDetail(orderId));
|
}
|
|
/**
|
* 扫码校验
|
*/
|
@ApiOperation(value = "扫码校验", tags = {"小程序-个人中心-门店管理-扫码核销校验"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "分享id", name = "shareId", required = true, dataType = "int", paramType="query"),
|
})
|
@GetMapping("/check/{orderNumber}/{shopId}")
|
public R<Boolean> check(@PathVariable("orderNumber") String orderNumber, @PathVariable("shopId") Integer shopId){
|
LoginUser loginUserApplet = tokenService.getLoginUserApplet();
|
Order order = orderService.getOne(new LambdaQueryWrapper<Order>()
|
.eq(Order::getOrderNumber, orderNumber));
|
return R.ok(orderService.check(order, shopId, loginUserApplet.getUserid()));
|
}
|
|
/**
|
* 订单核销
|
*/
|
@ApiOperation(value = "订单核销", tags = {"小程序-个人中心-门店管理-扫码核销"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "订单号", name = "code", required = true, dataType = "String"),
|
})
|
@GetMapping("/writeOff/{code}/{shopId}")
|
public R<Void> writeOff(@PathVariable("code") String code, @PathVariable("shopId") Integer shopId){
|
orderService.writeOff(code, shopId);
|
return R.ok();
|
}
|
|
/**
|
* 取消订单
|
*/
|
@ApiOperation(value = "取消订单", tags = {"小程序-个人中心-我的订单-取消订单"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "订单id", name = "orderId", required = true, dataType = "int"),
|
})
|
@GetMapping("/cancel/{orderId}")
|
public R<Void> cancel(@PathVariable("orderId") Long orderId){
|
orderService.update(new LambdaUpdateWrapper<Order>()
|
.eq(Order::getId, orderId)
|
.set(Order::getOrderStatus, OrderStatus.CANCELLED.getCode()));
|
return R.ok();
|
}
|
|
/**
|
* 确认收货
|
*/
|
@ApiOperation(value = "确认收货", tags = {"小程序-个人中心-我的订单-确认收货"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "订单id", name = "orderId", required = true, dataType = "int"),
|
})
|
@GetMapping("/confirm/{orderId}")
|
public R<Void> confirm(@PathVariable("orderId") Long orderId){
|
Order order = orderService.getById(orderId);
|
order.setOrderStatus(OrderStatus.COMPLETED.getCode());
|
orderService.updateById(order);
|
return R.ok();
|
}
|
|
/**
|
* 更换收货地址
|
*/
|
@ApiOperation(value = "更换收货地址", tags = {"小程序-个人中心-我的订单-更换收货地址"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "订单id", name = "orderId", required = true, dataType = "int"),
|
})
|
@GetMapping("/changeAddress")
|
public R<Void> changeAddress(@RequestParam("orderId") Long orderId, @RequestParam("addressId") Long addressId){
|
R<UserAddress> userAddressR = addressClient.getUserAddressById(addressId);
|
if(R.isError(userAddressR)){
|
return R.fail("收货地址不存在");
|
}
|
UserAddress userAddress = userAddressR.getData();
|
String addressJson = JSONObject.toJSONString(userAddress);
|
orderService.update(new LambdaUpdateWrapper<Order>()
|
.eq(Order::getId, orderId)
|
.set(Order::getAddressJson, addressJson));
|
return R.ok();
|
}
|
|
/**
|
* 更新订单状态
|
*/
|
@ApiOperation(value = "更新订单状态", tags = {"后台-订单管理-更新订单状态"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "订单对象", name = "order", required = true, dataType = "Order"),
|
})
|
@PostMapping("/updateOrderStatus")
|
public R<Void> updateOrderStatus(@RequestBody Order order){
|
Order order1 = orderService.getById(order.getId());
|
order1.setOrderStatus(order.getOrderStatus());
|
orderService.updateById(order1);
|
return R.ok();
|
}
|
|
|
/**
|
* 预约技师
|
*/
|
@PostMapping("/subscribe")
|
public R<Void> subscribe(@RequestParam(value = "id", required = false) Long id ,@RequestParam(value = "technicianId", required = false) Integer technicianId){
|
Order order = orderService.getById(id);
|
order.setTechnicianId(technicianId);
|
orderService.updateById(order);
|
return R.ok();
|
}
|
|
|
|
}
|