文件上传https

This commit is contained in:
chen-xin-zhi 2025-03-17 19:04:31 +08:00
parent d473fd27cd
commit 4f23116407
2 changed files with 16 additions and 0 deletions

View File

@ -12,4 +12,5 @@ public interface RefundRecordService extends IService<RefundRecord> {
* 获取查询条件
*/
QueryWrapper<RefundRecord> getQueryWrapper(RefundRecordQueryRequest refundRecordQueryRequest);
}

View File

@ -412,6 +412,21 @@ public class WeChatServiceImpl implements WeChatService {
updateWrapper.eq("orderItemId", orderItemId).set("orderItemStatus", OrderStatusConstant.PAYMENT_REFUNDED);
boolean update = pendingServiceOrderService.update(updateWrapper);
ThrowUtils.throwIf(!update, ErrorCode.OPERATION_ERROR, "服务类订单待处理记录状态更新失败");
// 如果退款的是订单中最后一个订单明细则修改订单状态
QueryWrapper<RefundRecord> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("outTradeNo", orderNumber);
long refundCount = refundRecordService.count(queryWrapper);
QueryWrapper<OrderItems> orderItemsQueryWrapper = new QueryWrapper<>();
orderItemsQueryWrapper.eq("orderId", order.getId());
long orderItemCount = orderItemService.count(orderItemsQueryWrapper);
UpdateWrapper<Order> orderUpdateWrapper = new UpdateWrapper<>();
if (refundCount == orderItemCount) {
orderUpdateWrapper.eq("id", order.getId()).set("orderStatus", OrderStatusConstant.PAYMENT_REFUNDED);
boolean result = orderService.update(orderUpdateWrapper);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "订单状态更新失败");
}
} else {
// 恢复商品库存
OrderItems orderItems = orderItemService.getById(orderItemId);