更新了微信支付

This commit is contained in:
chen-xin-zhi 2025-02-14 19:19:01 +08:00
parent 2b25ac503c
commit 68dc85d1bf
2 changed files with 52 additions and 8 deletions

View File

@ -21,6 +21,7 @@ import com.wechat.pay.java.service.payments.jsapi.model.PrepayWithRequestPayment
import com.wechat.pay.java.service.payments.model.Transaction; import com.wechat.pay.java.service.payments.model.Transaction;
import com.wechat.pay.java.service.refund.model.Refund; import com.wechat.pay.java.service.refund.model.Refund;
import com.wechat.pay.java.service.refund.model.RefundNotification; import com.wechat.pay.java.service.refund.model.RefundNotification;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource; import jakarta.annotation.Resource;
import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletRequest;
@ -58,6 +59,7 @@ public class WeChatPayController {
* JSAPI 下单 * JSAPI 下单
*/ */
@PostMapping("/payment/create") @PostMapping("/payment/create")
@Operation(summary = "JSAPI 下单", description = "参数订单id, 权限:所有人, 方法名createPayment")
public BaseResponse<PrepayWithRequestPaymentResponse> createPayment(@RequestBody CommonRequest commonRequest, HttpServletRequest request) { public BaseResponse<PrepayWithRequestPaymentResponse> createPayment(@RequestBody CommonRequest commonRequest, HttpServletRequest request) {
User loginUser = userService.getLoginUser(request); User loginUser = userService.getLoginUser(request);
String miniOpenId = loginUser.getMiniOpenId(); String miniOpenId = loginUser.getMiniOpenId();
@ -74,11 +76,13 @@ public class WeChatPayController {
} }
/** /**
* JSAPI 下单回调 * JSAPI 下单回调
*/ */
@PostMapping("/payment/callback") @PostMapping("/payment/callback")
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Operation(summary = "JSAPI 下单回调", description = "参数订单id, 权限:所有人, 方法名callbackPayment")
public synchronized BaseResponse<Boolean> callbackPayment(HttpServletRequest request) throws IOException { public synchronized BaseResponse<Boolean> callbackPayment(HttpServletRequest request) throws IOException {
// 获取下单信息 // 获取下单信息
Transaction transaction = weChatService.getTransactionInfo(request); Transaction transaction = weChatService.getTransactionInfo(request);
@ -96,6 +100,7 @@ public class WeChatPayController {
* @param commonRequest 订单id * @param commonRequest 订单id
*/ */
@PostMapping("/refund/create") @PostMapping("/refund/create")
@Operation(summary = "Web端管理员全额退款", description = "参数订单id, 权限web端管理员, 方法名createRefund")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE) @AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<Refund> createRefund(@RequestBody CommonRequest commonRequest) { public BaseResponse<Refund> createRefund(@RequestBody CommonRequest commonRequest) {
if (commonRequest == null || commonRequest.getId() <= 0) { if (commonRequest == null || commonRequest.getId() <= 0) {
@ -113,13 +118,12 @@ public class WeChatPayController {
/** /**
* Web管理员部分退款 * Web管理员部分退款
* @param commonRequest 订单明细id * @param commonRequest 订单明细id
*/ */
@PostMapping("/refund/part/create") @PostMapping("/refund/part/create")
@Operation(summary = "Web管理员部分退款", description = "参数订单id, 权限web端管理员, 方法名createPartRefund")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE) @AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<Refund> createPartRefund(@RequestBody CommonRequest commonRequest) { public BaseResponse<Refund> createPartRefund(@RequestBody CommonRequest commonRequest) {
if (commonRequest == null || commonRequest.getId() <= 0) { if (commonRequest == null || commonRequest.getId() <= 0) {
@ -135,11 +139,14 @@ public class WeChatPayController {
/** /**
* Web管理员剩余部分退款 * Web管理员剩余部分退款
* @param commonRequest 订单id * @param commonRequest 订单id
*/ */
@PostMapping("/refund/rest/create") @PostMapping("/refund/rest/create")
@Operation(summary = "Web管理员剩余部分退款", description = "参数订单id, 权限web端管理员, 方法名createRestRefund")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE) @AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<Refund> createRestRefund(@RequestBody CommonRequest commonRequest) { public BaseResponse<Refund> createRestRefund(@RequestBody CommonRequest commonRequest) {
if (commonRequest == null || commonRequest.getId() <= 0) { if (commonRequest == null || commonRequest.getId() <= 0) {
@ -161,6 +168,7 @@ public class WeChatPayController {
* 全额退款回调 * 全额退款回调
*/ */
@PostMapping("/refund/callback") @PostMapping("/refund/callback")
@Operation(summary = "全额退款回调", description = "参数订单id, 权限web端管理员, 方法名callbackRefund")
public BaseResponse<Boolean> callbackRefund(HttpServletRequest request) { public BaseResponse<Boolean> callbackRefund(HttpServletRequest request) {
// 获取退款信息 // 获取退款信息
RefundNotification refundNotification = weChatService.getRefundInfo(request); RefundNotification refundNotification = weChatService.getRefundInfo(request);
@ -171,10 +179,12 @@ public class WeChatPayController {
} }
/** /**
* 部分退款回调 * 部分退款回调
*/ */
@PostMapping("/refund/part/callback") @PostMapping("/refund/part/callback")
@Operation(summary = "部分退款回调", description = "参数订单id, 权限web端管理员, 方法名callbackRefundPart")
public BaseResponse<Boolean> callbackRefundPart(HttpServletRequest request) { public BaseResponse<Boolean> callbackRefundPart(HttpServletRequest request) {
// 获取退款信息 // 获取退款信息
RefundNotification refundNotification = weChatService.getRefundInfo(request); RefundNotification refundNotification = weChatService.getRefundInfo(request);
@ -185,6 +195,39 @@ public class WeChatPayController {
} }
/**
* 剩余退款回调
*/
@PostMapping("/refund/rest/callback")
@Operation(summary = "剩余退款回调", description = "参数订单id, 权限web端管理员, 方法名callbackRestRefund")
public BaseResponse<Boolean> callbackRestRefund(HttpServletRequest request) {
// 获取退款信息
RefundNotification refundNotification = weChatService.getRefundInfo(request);
// 退款回调
boolean result = weChatService.refundRestCallback(refundNotification);
ThrowUtils.throwIf(!result, ErrorCode.SYSTEM_ERROR, "退款回调失败");
return ResultUtils.success(true);
}
// /** // /**
// * 发送订阅消息 // * 发送订阅消息
// */ // */

View File

@ -258,6 +258,10 @@ public class WeChatServiceImpl implements WeChatService {
amountReq.setTotal(order.getTotalAmount().movePointRight(2).longValue()); amountReq.setTotal(order.getTotalAmount().movePointRight(2).longValue());
amountReq.setCurrency("CNY"); amountReq.setCurrency("CNY");
createRequest.setAmount(amountReq); createRequest.setAmount(amountReq);
// 生成退款记录
createRefundRecord(orderNumber, outRefundNo, refundAmount);
// 申请退款 // 申请退款
System.out.println("退款请求:" + createRequest); System.out.println("退款请求:" + createRequest);
Refund refund = wxPayConfig.getRefundService().create(createRequest); Refund refund = wxPayConfig.getRefundService().create(createRequest);
@ -281,9 +285,6 @@ public class WeChatServiceImpl implements WeChatService {
String orderNumber = refundNotification.getOutTradeNo(); String orderNumber = refundNotification.getOutTradeNo();
Order order = getOrderInfoByOrderNumber(orderNumber); Order order = getOrderInfoByOrderNumber(orderNumber);
// 生成退款记录
createRefundRecord(refundNotification);
// 解析出订单明细id // 解析出订单明细id
String outRefundNo = refundNotification.getOutRefundNo(); String outRefundNo = refundNotification.getOutRefundNo();
String orderItemId = RefundUtils.parseRefundNoToItemId(outRefundNo); String orderItemId = RefundUtils.parseRefundNoToItemId(outRefundNo);
@ -329,7 +330,7 @@ public class WeChatServiceImpl implements WeChatService {
String outRefundNo = RefundUtils.generateRefundNo(); String outRefundNo = RefundUtils.generateRefundNo();
createRequest.setOutRefundNo(outRefundNo); createRequest.setOutRefundNo(outRefundNo);
// 退款结果回调 // 退款结果回调
createRequest.setNotifyUrl(wxPayConfig.getNotifyUrl() + "/api/wechat/refund/callback"); createRequest.setNotifyUrl(wxPayConfig.getNotifyUrl() + "/api/wechat/refund/rest/callback");
// 退款金额 // 退款金额
AmountReq amountReq = new AmountReq(); AmountReq amountReq = new AmountReq();
long refundAmount = totalAmount.movePointRight(2).intValue(); long refundAmount = totalAmount.movePointRight(2).intValue();
@ -539,11 +540,11 @@ public class WeChatServiceImpl implements WeChatService {
/** /**
* 生成退款记录 * 生成退款记录
*/ */
private void createRefundRecord(String outTradeNo, String outRefundNo, long refundAmount) { private void createRefundRecord(String outTradeNo, String outRefundNo, BigDecimal refundAmount) {
RefundRecord refundRecord = new RefundRecord(); RefundRecord refundRecord = new RefundRecord();
refundRecord.setOutTradeNo(outTradeNo); refundRecord.setOutTradeNo(outTradeNo);
refundRecord.setOutRefundNo(outRefundNo); refundRecord.setOutRefundNo(outRefundNo);
refundRecord.setRefundAmount(BigDecimal.valueOf(refundAmount).movePointLeft(2)); refundRecord.setRefundAmount(refundAmount.movePointLeft(2));
boolean save = refundRecordService.save(refundRecord); boolean save = refundRecordService.save(refundRecord);
ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR, "退款记录生成失败"); ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR, "退款记录生成失败");