支付问题

This commit is contained in:
2026-01-29 17:57:18 +08:00
parent 3fd032c1d0
commit 7d640b4f9c
2 changed files with 2 additions and 5 deletions

View File

@@ -177,11 +177,9 @@ public class OrderPayController {
@PostMapping("/shopPayApi/js2Pay") @PostMapping("/shopPayApi/js2Pay")
@Debounce(value = "#payParam.checkOrderPay.orderId") @Debounce(value = "#payParam.checkOrderPay.orderId")
public CzgResult<Map<String, Object>> js2PayOrder(HttpServletRequest request, @RequestBody OrderPayParamDTO payParam) { public CzgResult<Map<String, Object>> js2PayOrder(HttpServletRequest request, @RequestBody OrderPayParamDTO payParam) {
if ("alipay".equals(payParam.getPayType())) { if ("ALIPAY".equals(payParam.getPayType())) {
payParam.setPayType(PayCst.Type.ALIPAY); payParam.setPayType(PayCst.Type.ALIPAY);
} else if ("aliPay".equals(payParam.getPayType())) { } else if ("WECHAT".equals(payParam.getPayType())) {
payParam.setPayType(PayCst.Type.ALIPAY);
} else if ("wechatPay".equals(payParam.getPayType())) {
payParam.setPayType(PayCst.Type.WECHAT); payParam.setPayType(PayCst.Type.WECHAT);
} else { } else {
throw new CzgException(payParam.getPayType() + "支付方式错误"); throw new CzgException(payParam.getPayType() + "支付方式错误");

View File

@@ -62,7 +62,6 @@ public class SaTokenConfigure implements WebMvcConfigurer {
SaRouter.back(); SaRouter.back();
return; return;
} }
log.info("放行1");
SaRouter SaRouter
.match(r -> "OPTIONS".equalsIgnoreCase(SaHolder.getRequest().getMethod())) .match(r -> "OPTIONS".equalsIgnoreCase(SaHolder.getRequest().getMethod()))
.stop() .stop()