更新了优惠券模块
This commit is contained in:
parent
b162ce4b26
commit
20278363e4
|
@ -317,6 +317,13 @@ public class WeChatServiceImpl implements WeChatService {
|
||||||
ThrowUtils.throwIf(!update, ErrorCode.OPERATION_ERROR, "订单状态修改失败");
|
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<>();
|
QueryWrapper<OrderItems> orderItemsQueryWrapper = new QueryWrapper<>();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user