|
@@ -3,10 +3,13 @@ package com.atguigu.tingshu.order.service.impl;
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
+import cn.hutool.core.lang.Assert;
|
|
|
import com.atguigu.tingshu.account.AccountFeignClient;
|
|
|
import com.atguigu.tingshu.album.AlbumFeignClient;
|
|
|
import com.atguigu.tingshu.common.constant.RedisConstant;
|
|
|
import com.atguigu.tingshu.common.execption.GuiguException;
|
|
|
+import com.atguigu.tingshu.common.rabbit.constant.MqConst;
|
|
|
+import com.atguigu.tingshu.common.rabbit.service.RabbitService;
|
|
|
import com.atguigu.tingshu.common.result.Result;
|
|
|
import com.atguigu.tingshu.common.util.AuthContextHolder;
|
|
|
import com.atguigu.tingshu.model.order.OrderDerate;
|
|
@@ -27,11 +30,15 @@ import com.atguigu.tingshu.vo.order.OrderDetailVo;
|
|
|
import com.atguigu.tingshu.vo.order.OrderInfoVo;
|
|
|
import com.atguigu.tingshu.vo.order.TradeVo;
|
|
|
import com.atguigu.tingshu.vo.user.UserPaidRecordVo;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.IdWorker;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import io.seata.spring.annotation.GlobalTransactional;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.cloud.context.config.annotation.RefreshScope;
|
|
|
import org.springframework.data.redis.core.RedisTemplate;
|
|
|
import org.springframework.data.redis.core.script.DefaultRedisScript;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -45,6 +52,7 @@ import static com.atguigu.tingshu.common.constant.SystemConstant.*;
|
|
|
|
|
|
@Slf4j
|
|
|
@Service
|
|
|
+@RefreshScope
|
|
|
@SuppressWarnings({"all"})
|
|
|
public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo> implements OrderInfoService {
|
|
|
|
|
@@ -76,6 +84,17 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
|
|
private TradeOrderStrategyFactory tradeOrderStrategyFactory;
|
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private RabbitService rabbitService;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ * 对购买商品(VIP会员、专辑、声音)封装订单结算页所需要数据
|
|
|
+ *
|
|
|
+ * @param userId 用户ID
|
|
|
+ * @param tradeVo {购买商品类别,商品ID,声音数量}
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@Override
|
|
|
public OrderInfoVo trade(Long userId, TradeVo tradeVo) {
|
|
|
|
|
@@ -87,6 +106,7 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
|
|
tradeOrderStrategy.handleTrade(tradeVo, orderInfoVo);
|
|
|
return orderInfoVo;
|
|
|
}
|
|
|
+
|
|
|
|
|
|
* 对购买商品(VIP会员、专辑、声音)封装订单结算页所需要数据
|
|
|
*
|
|
@@ -249,6 +269,9 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
|
|
return orderInfoVo;
|
|
|
}*/
|
|
|
|
|
|
+ @Value("${order.cancel}")
|
|
|
+ private Integer cancelTTl;
|
|
|
+
|
|
|
|
|
|
* 提交订单
|
|
|
*
|
|
@@ -327,15 +350,11 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
|
|
throw new GuiguException(result.getCode(), result.getMessage());
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
if (ORDER_PAY_WAY_WEIXIN.equals(payWay)) {
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+ rabbitService.sendDelayMessage(MqConst.EXCHANGE_CANCEL_ORDER, MqConst.ROUTING_CANCEL_ORDER, orderInfo.getId(), cancelTTl);
|
|
|
}
|
|
|
|
|
|
return orderInfo.getOrderNo();
|
|
@@ -393,7 +412,7 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
|
|
}
|
|
|
|
|
|
List<OrderDerateVo> orderDerateVoList = orderInfoVo.getOrderDerateVoList();
|
|
|
- if (CollUtil.isNotEmpty(orderDetailVoList)) {
|
|
|
+ if (CollUtil.isNotEmpty(orderDerateVoList)) {
|
|
|
orderDerateVoList
|
|
|
.stream()
|
|
|
.forEach(orderDerateVo -> {
|
|
@@ -405,4 +424,93 @@ public class OrderInfoServiceImpl extends ServiceImpl<OrderInfoMapper, OrderInfo
|
|
|
return orderInfo;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ * 根据订单编号查询订单信息(包含订单明细,优惠列表)
|
|
|
+ *
|
|
|
+ * @param orderNo
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public OrderInfo getOrderInfo(String orderNo) {
|
|
|
+
|
|
|
+ OrderInfo orderInfo = baseMapper.selectOne(
|
|
|
+ new LambdaQueryWrapper<OrderInfo>()
|
|
|
+ .eq(OrderInfo::getOrderNo, orderNo)
|
|
|
+ );
|
|
|
+ Assert.notNull(orderInfo, "订单:{}不存在", orderNo);
|
|
|
+
|
|
|
+ List<OrderDetail> orderDetailList = orderDetailMapper.selectList(
|
|
|
+ new LambdaQueryWrapper<OrderDetail>()
|
|
|
+ .eq(OrderDetail::getOrderId, orderInfo.getId())
|
|
|
+ );
|
|
|
+ if (CollUtil.isNotEmpty(orderDetailList)) {
|
|
|
+ orderInfo.setOrderDetailList(orderDetailList);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ List<OrderDerate> orderDerateList = orderDerateMapper.selectList(
|
|
|
+ new LambdaQueryWrapper<OrderDerate>()
|
|
|
+ .eq(OrderDerate::getOrderId, orderInfo.getId())
|
|
|
+ );
|
|
|
+ if (CollUtil.isNotEmpty(orderDerateList)) {
|
|
|
+ orderInfo.setOrderDerateList(orderDerateList);
|
|
|
+ }
|
|
|
+ return orderInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 查询指定用户订单列表
|
|
|
+ *
|
|
|
+ * @param pageInfo
|
|
|
+ * @param userId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public Page<OrderInfo> findUserOrderPage(Page<OrderInfo> pageInfo, Long userId) {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ LambdaQueryWrapper<OrderInfo> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ queryWrapper.eq(OrderInfo::getUserId, userId);
|
|
|
+ queryWrapper.orderByDesc(OrderInfo::getId);
|
|
|
+ pageInfo = this.page(pageInfo, queryWrapper);
|
|
|
+
|
|
|
+
|
|
|
+ List<OrderInfo> records = pageInfo.getRecords();
|
|
|
+ if (CollUtil.isNotEmpty(records)) {
|
|
|
+ List<Long> orderIdList = records.stream().map(OrderInfo::getId).collect(Collectors.toList());
|
|
|
+ List<OrderDetail> orderDetailList = orderDetailMapper.selectList(
|
|
|
+ new LambdaQueryWrapper<OrderDetail>()
|
|
|
+ .in(OrderDetail::getOrderId, orderIdList)
|
|
|
+ );
|
|
|
+
|
|
|
+ Map<Long, List<OrderDetail>> collect = orderDetailList.stream().collect(Collectors.groupingBy(OrderDetail::getOrderId));
|
|
|
+
|
|
|
+ records.stream().forEach(orderInfo -> {
|
|
|
+ orderInfo.setOrderDetailList(collect.get(orderInfo.getId()));
|
|
|
+ });
|
|
|
+ }
|
|
|
+ return pageInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 根据订单ID检查订单支付状态,如果未支付则更新订单状态为已取消
|
|
|
+ *
|
|
|
+ * @param orderId
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void cancelOrder(Long orderId) {
|
|
|
+
|
|
|
+ OrderInfo orderInfo = baseMapper.selectById(orderId);
|
|
|
+
|
|
|
+ if (orderInfo != null && ORDER_STATUS_UNPAID.equals(orderInfo.getOrderStatus())) {
|
|
|
+ orderInfo.setOrderStatus(ORDER_STATUS_CANCEL);
|
|
|
+ baseMapper.updateById(orderInfo);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|