更新了优惠券模块

This commit is contained in:
chen-xin-zhi 2025-02-11 08:05:47 +08:00
parent b162ce4b26
commit 20278363e4

View File

@ -317,6 +317,13 @@ public class WeChatServiceImpl implements WeChatService {
ThrowUtils.throwIf(!update, ErrorCode.OPERATION_ERROR, "订单状态修改失败");
// 生成退款记录
RefundRecord refundRecord = new RefundRecord();
refundRecord.setOutTradeNo(refundNotification.getOutTradeNo());
refundRecord.setOutRefundNo(refundNotification.getOutRefundNo());
refundRecord.setRefundAmount(order.getTotalAmount());
boolean save = refundRecordService.save(refundRecord);
ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR, "退款记录生成失败");
// 恢复商品库存
QueryWrapper<OrderItems> orderItemsQueryWrapper = new QueryWrapper<>();