this is 4.2 update

This commit is contained in:
chen-xin-zhi 2025-04-04 09:59:26 +08:00
parent 30702deba7
commit dea671cc22
2 changed files with 5 additions and 1 deletions

View File

@ -417,4 +417,6 @@ public class GlobalController {
} }

View File

@ -34,6 +34,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.io.IOException; import java.io.IOException;
import java.math.BigDecimal;
/** /**
* 微信小程序相关接口 * 微信小程序相关接口
@ -87,7 +88,8 @@ public class WeChatPayController {
if (!loginUser.getId().equals(order.getUserId())) { if (!loginUser.getId().equals(order.getUserId())) {
throw new BusinessException(ErrorCode.NO_AUTH_ERROR, "你不是该订单用户!"); throw new BusinessException(ErrorCode.NO_AUTH_ERROR, "你不是该订单用户!");
} }
PrepayWithRequestPaymentResponse response = weChatService.createPayment(String.valueOf(orderId), miniOpenId, order.getTotalAmount()); BigDecimal total = order.getTotalAmount().add(order.getPostage());
PrepayWithRequestPaymentResponse response = weChatService.createPayment(String.valueOf(orderId), miniOpenId, total);
return ResultUtils.success(response); return ResultUtils.success(response);
} }