苍穹外卖--用户端&管理端--订单管理业务操作的全部代码实现
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
package com.sky.service;
|
||||
|
||||
import com.sky.dto.OrdersPaymentDTO;
|
||||
import com.sky.dto.OrdersSubmitDTO;
|
||||
import com.sky.dto.*;
|
||||
import com.sky.result.PageResult;
|
||||
import com.sky.vo.OrderPaymentVO;
|
||||
import com.sky.vo.OrderStatisticsVO;
|
||||
import com.sky.vo.OrderSubmitVO;
|
||||
import com.sky.vo.OrderVO;
|
||||
|
||||
public interface OrderService {
|
||||
/**
|
||||
@@ -19,4 +21,82 @@ public interface OrderService {
|
||||
* @return
|
||||
*/
|
||||
OrderPaymentVO payment(OrdersPaymentDTO ordersPaymentDTO) throws Exception;
|
||||
|
||||
|
||||
/**
|
||||
* 用户端订单分页查询
|
||||
* @param page
|
||||
* @param pageSize
|
||||
* @param status
|
||||
* @return
|
||||
*/
|
||||
PageResult pageQuery4User(int page, int pageSize, Integer status);
|
||||
|
||||
/**
|
||||
* 查询订单详情
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
OrderVO details(Long id);
|
||||
|
||||
/**
|
||||
* 用户取消订单
|
||||
* @param id
|
||||
*/
|
||||
void userCancelById(Long id) throws Exception;
|
||||
|
||||
/**
|
||||
* 再来一单
|
||||
*
|
||||
* @param id
|
||||
*/
|
||||
void repetition(Long id);
|
||||
|
||||
/**
|
||||
* 条件搜索订单
|
||||
* @param ordersPageQueryDTO
|
||||
* @return
|
||||
*/
|
||||
PageResult conditionSearch(OrdersPageQueryDTO ordersPageQueryDTO);
|
||||
|
||||
/**
|
||||
* 各个状态的订单数量统计
|
||||
* @return
|
||||
*/
|
||||
OrderStatisticsVO statistics();
|
||||
|
||||
/**
|
||||
* 接单
|
||||
*
|
||||
* @param ordersConfirmDTO
|
||||
*/
|
||||
void confirm(OrdersConfirmDTO ordersConfirmDTO);
|
||||
|
||||
/**
|
||||
* 拒单
|
||||
*
|
||||
* @param ordersRejectionDTO
|
||||
*/
|
||||
void rejection(OrdersRejectionDTO ordersRejectionDTO) throws Exception;
|
||||
|
||||
/**
|
||||
* 商家取消订单
|
||||
*
|
||||
* @param ordersCancelDTO
|
||||
*/
|
||||
void cancel(OrdersCancelDTO ordersCancelDTO) throws Exception;
|
||||
|
||||
/**
|
||||
* 派送订单
|
||||
*
|
||||
* @param id
|
||||
*/
|
||||
void delivery(Long id);
|
||||
|
||||
/**
|
||||
* 完成订单
|
||||
*
|
||||
* @param id
|
||||
*/
|
||||
void complete(Long id);
|
||||
}
|
||||
|
||||
@@ -1,26 +1,34 @@
|
||||
package com.sky.service.impl;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.github.pagehelper.Page;
|
||||
import com.github.pagehelper.PageHelper;
|
||||
import com.sky.constant.MessageConstant;
|
||||
import com.sky.context.BaseContext;
|
||||
import com.sky.dto.OrdersPaymentDTO;
|
||||
import com.sky.dto.OrdersSubmitDTO;
|
||||
import com.sky.dto.*;
|
||||
import com.sky.entity.*;
|
||||
import com.sky.exception.AddressBookBusinessException;
|
||||
import com.sky.exception.OrderBusinessException;
|
||||
import com.sky.exception.ShoppingCartBusinessException;
|
||||
import com.sky.mapper.*;
|
||||
import com.sky.result.PageResult;
|
||||
import com.sky.service.OrderService;
|
||||
import com.sky.vo.OrderPaymentVO;
|
||||
import com.sky.vo.OrderStatisticsVO;
|
||||
import com.sky.vo.OrderSubmitVO;
|
||||
import com.sky.vo.OrderVO;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.core.annotation.Order;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
import org.springframework.util.CollectionUtils;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
public class OrderServiceImpl implements OrderService {
|
||||
@@ -124,4 +132,301 @@ public class OrderServiceImpl implements OrderService {
|
||||
orderMapper.updateStatus(OrderStatus, OrderPaidStatus, check_out_time, this.orders.getId());
|
||||
return vo;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 用户端订单分页查询
|
||||
*
|
||||
* @param pageNum
|
||||
* @param pageSize
|
||||
* @param status
|
||||
* @return
|
||||
*/
|
||||
public PageResult pageQuery4User(int pageNum, int pageSize, Integer status) {
|
||||
// 设置分页
|
||||
PageHelper.startPage(pageNum, pageSize);
|
||||
|
||||
OrdersPageQueryDTO ordersPageQueryDTO = new OrdersPageQueryDTO();
|
||||
ordersPageQueryDTO.setUserId(BaseContext.getCurrentId());//只能查询自己的订单
|
||||
ordersPageQueryDTO.setStatus(status);
|
||||
|
||||
// 分页条件查询
|
||||
Page<Orders> page = orderMapper.pageQuery(ordersPageQueryDTO);
|
||||
|
||||
List<OrderVO> list = new ArrayList();
|
||||
|
||||
// 查询出订单明细,并封装入OrderVO进行响应
|
||||
if (page != null && page.getTotal() > 0) {
|
||||
for (Orders orders : page) {
|
||||
Long orderId = orders.getId();// 订单id
|
||||
|
||||
// 查询订单明细
|
||||
List<OrderDetail> orderDetails = orderDetailMapper.getByOrderId(orderId);
|
||||
|
||||
OrderVO orderVO = new OrderVO();
|
||||
BeanUtils.copyProperties(orders, orderVO);
|
||||
orderVO.setOrderDetailList(orderDetails);
|
||||
|
||||
list.add(orderVO);
|
||||
}
|
||||
}
|
||||
return new PageResult(page.getTotal(), list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询订单详情
|
||||
*
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public OrderVO details(Long id) {
|
||||
// 根据id查询订单
|
||||
Orders orders = orderMapper.getById(id);
|
||||
|
||||
// 查询该订单对应的菜品/套餐明细
|
||||
List<OrderDetail> orderDetailList = orderDetailMapper.getByOrderId(orders.getId());
|
||||
|
||||
// 将该订单及其详情封装到OrderVO并返回
|
||||
OrderVO orderVO = new OrderVO();
|
||||
BeanUtils.copyProperties(orders, orderVO);
|
||||
orderVO.setOrderDetailList(orderDetailList);
|
||||
|
||||
return orderVO;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户取消订单
|
||||
*
|
||||
* @param id
|
||||
*/
|
||||
public void userCancelById(Long id) throws Exception {
|
||||
// 根据id查询订单
|
||||
Orders ordersDB = orderMapper.getById(id);
|
||||
|
||||
// 校验订单是否存在
|
||||
if (ordersDB == null) {
|
||||
throw new OrderBusinessException(MessageConstant.ORDER_NOT_FOUND);
|
||||
}
|
||||
|
||||
//订单状态 1待付款 2待接单 3已接单 4派送中 5已完成 6已取消
|
||||
if (ordersDB.getStatus() > 2) {
|
||||
throw new OrderBusinessException(MessageConstant.ORDER_STATUS_ERROR);
|
||||
}
|
||||
|
||||
Orders orders = new Orders();
|
||||
orders.setId(ordersDB.getId());
|
||||
|
||||
// 更新订单状态、取消原因、取消时间
|
||||
orders.setStatus(Orders.CANCELLED);
|
||||
orders.setCancelReason("用户取消");
|
||||
orders.setCancelTime(LocalDateTime.now());
|
||||
orderMapper.update(orders);
|
||||
}
|
||||
|
||||
/**
|
||||
* 再来一单
|
||||
*
|
||||
* @param id
|
||||
*/
|
||||
public void repetition(Long id) {
|
||||
// 查询当前用户id
|
||||
Long userId = BaseContext.getCurrentId();
|
||||
|
||||
// 根据订单id查询当前订单详情
|
||||
List<OrderDetail> orderDetailList = orderDetailMapper.getByOrderId(id);
|
||||
|
||||
// 将订单详情对象转换为购物车对象
|
||||
List<ShoppingCart> shoppingCartList = orderDetailList.stream().map(x -> {
|
||||
ShoppingCart shoppingCart = new ShoppingCart();
|
||||
|
||||
// 将原订单详情里面的菜品信息重新复制到购物车对象中
|
||||
BeanUtils.copyProperties(x, shoppingCart, "id");
|
||||
shoppingCart.setUserId(userId);
|
||||
shoppingCart.setCreateTime(LocalDateTime.now());
|
||||
|
||||
return shoppingCart;
|
||||
}).collect(Collectors.toList());
|
||||
|
||||
// 将购物车对象批量添加到数据库
|
||||
shoppingCartMapper.insertBatch(shoppingCartList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单搜索
|
||||
*
|
||||
* @param ordersPageQueryDTO
|
||||
* @return
|
||||
*/
|
||||
public PageResult conditionSearch(OrdersPageQueryDTO ordersPageQueryDTO) {
|
||||
PageHelper.startPage(ordersPageQueryDTO.getPage(), ordersPageQueryDTO.getPageSize());
|
||||
|
||||
Page<Orders> page = orderMapper.pageQuery(ordersPageQueryDTO);
|
||||
|
||||
// 部分订单状态,需要额外返回订单菜品信息,将Orders转化为OrderVO
|
||||
List<OrderVO> orderVOList = getOrderVOList(page);
|
||||
|
||||
return new PageResult(page.getTotal(), orderVOList);
|
||||
}
|
||||
|
||||
private List<OrderVO> getOrderVOList(Page<Orders> page) {
|
||||
// 需要返回订单菜品信息,自定义OrderVO响应结果
|
||||
List<OrderVO> orderVOList = new ArrayList<>();
|
||||
|
||||
List<Orders> ordersList = page.getResult();
|
||||
if (!CollectionUtils.isEmpty(ordersList)) {
|
||||
for (Orders orders : ordersList) {
|
||||
// 将共同字段复制到OrderVO
|
||||
OrderVO orderVO = new OrderVO();
|
||||
BeanUtils.copyProperties(orders, orderVO);
|
||||
String orderDishes = getOrderDishesStr(orders);
|
||||
|
||||
// 将订单菜品信息封装到orderVO中,并添加到orderVOList
|
||||
orderVO.setOrderDishes(orderDishes);
|
||||
orderVOList.add(orderVO);
|
||||
}
|
||||
}
|
||||
return orderVOList;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据订单id获取菜品信息字符串
|
||||
*
|
||||
* @param orders
|
||||
* @return
|
||||
*/
|
||||
private String getOrderDishesStr(Orders orders) {
|
||||
// 查询订单菜品详情信息(订单中的菜品和数量)
|
||||
List<OrderDetail> orderDetailList = orderDetailMapper.getByOrderId(orders.getId());
|
||||
|
||||
// 将每一条订单菜品信息拼接为字符串(格式:宫保鸡丁*3;)
|
||||
List<String> orderDishList = orderDetailList.stream().map(x -> {
|
||||
String orderDish = x.getName() + "*" + x.getNumber() + ";";
|
||||
return orderDish;
|
||||
}).collect(Collectors.toList());
|
||||
|
||||
// 将该订单对应的所有菜品信息拼接在一起
|
||||
return String.join("", orderDishList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 各个状态的订单数量统计
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public OrderStatisticsVO statistics() {
|
||||
// 根据状态,分别查询出待接单、待派送、派送中的订单数量
|
||||
Integer toBeConfirmed = orderMapper.countStatus(Orders.TO_BE_CONFIRMED);
|
||||
Integer confirmed = orderMapper.countStatus(Orders.CONFIRMED);
|
||||
Integer deliveryInProgress = orderMapper.countStatus(Orders.DELIVERY_IN_PROGRESS);
|
||||
|
||||
// 将查询出的数据封装到orderStatisticsVO中响应
|
||||
OrderStatisticsVO orderStatisticsVO = new OrderStatisticsVO();
|
||||
orderStatisticsVO.setToBeConfirmed(toBeConfirmed);
|
||||
orderStatisticsVO.setConfirmed(confirmed);
|
||||
orderStatisticsVO.setDeliveryInProgress(deliveryInProgress);
|
||||
return orderStatisticsVO;
|
||||
}
|
||||
|
||||
/**
|
||||
* 接单
|
||||
*
|
||||
* @param ordersConfirmDTO
|
||||
*/
|
||||
public void confirm(OrdersConfirmDTO ordersConfirmDTO) {
|
||||
Orders orders = Orders.builder()
|
||||
.id(ordersConfirmDTO.getId())
|
||||
.status(Orders.CONFIRMED)
|
||||
.build();
|
||||
|
||||
orderMapper.update(orders);
|
||||
}
|
||||
|
||||
/**
|
||||
* 拒单
|
||||
*
|
||||
* @param ordersRejectionDTO
|
||||
*/
|
||||
public void rejection(OrdersRejectionDTO ordersRejectionDTO) throws Exception {
|
||||
// 根据id查询订单
|
||||
Orders ordersDB = orderMapper.getById(ordersRejectionDTO.getId());
|
||||
|
||||
// 订单只有存在且状态为2(待接单)才可以拒单
|
||||
if (ordersDB == null || !ordersDB.getStatus().equals(Orders.TO_BE_CONFIRMED)) {
|
||||
throw new OrderBusinessException(MessageConstant.ORDER_STATUS_ERROR);
|
||||
}
|
||||
|
||||
|
||||
// 拒单需要退款,根据订单id更新订单状态、拒单原因、取消时间
|
||||
Orders orders = new Orders();
|
||||
orders.setId(ordersDB.getId());
|
||||
orders.setStatus(Orders.CANCELLED);
|
||||
orders.setRejectionReason(ordersRejectionDTO.getRejectionReason());
|
||||
orders.setCancelTime(LocalDateTime.now());
|
||||
|
||||
orderMapper.update(orders);
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消订单
|
||||
*
|
||||
* @param ordersCancelDTO
|
||||
*/
|
||||
public void cancel(OrdersCancelDTO ordersCancelDTO) throws Exception {
|
||||
// 根据id查询订单
|
||||
Orders ordersDB = orderMapper.getById(ordersCancelDTO.getId());
|
||||
|
||||
|
||||
// 管理端取消订单需要退款,根据订单id更新订单状态、取消原因、取消时间
|
||||
Orders orders = new Orders();
|
||||
orders.setId(ordersCancelDTO.getId());
|
||||
orders.setStatus(Orders.CANCELLED);
|
||||
orders.setCancelReason(ordersCancelDTO.getCancelReason());
|
||||
orders.setCancelTime(LocalDateTime.now());
|
||||
orderMapper.update(orders);
|
||||
}
|
||||
|
||||
/**
|
||||
* 派送订单
|
||||
*
|
||||
* @param id
|
||||
*/
|
||||
public void delivery(Long id) {
|
||||
// 根据id查询订单
|
||||
Orders ordersDB = orderMapper.getById(id);
|
||||
|
||||
// 校验订单是否存在,并且状态为3
|
||||
if (ordersDB == null || !ordersDB.getStatus().equals(Orders.CONFIRMED)) {
|
||||
throw new OrderBusinessException(MessageConstant.ORDER_STATUS_ERROR);
|
||||
}
|
||||
|
||||
Orders orders = new Orders();
|
||||
orders.setId(ordersDB.getId());
|
||||
// 更新订单状态,状态转为派送中
|
||||
orders.setStatus(Orders.DELIVERY_IN_PROGRESS);
|
||||
|
||||
orderMapper.update(orders);
|
||||
}
|
||||
|
||||
/**
|
||||
* 完成订单
|
||||
*
|
||||
* @param id
|
||||
*/
|
||||
public void complete(Long id) {
|
||||
// 根据id查询订单
|
||||
Orders ordersDB = orderMapper.getById(id);
|
||||
|
||||
// 校验订单是否存在,并且状态为4
|
||||
if (ordersDB == null || !ordersDB.getStatus().equals(Orders.DELIVERY_IN_PROGRESS)) {
|
||||
throw new OrderBusinessException(MessageConstant.ORDER_STATUS_ERROR);
|
||||
}
|
||||
|
||||
Orders orders = new Orders();
|
||||
orders.setId(ordersDB.getId());
|
||||
// 更新订单状态,状态转为完成
|
||||
orders.setStatus(Orders.COMPLETED);
|
||||
orders.setDeliveryTime(LocalDateTime.now());
|
||||
|
||||
orderMapper.update(orders);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user