@@ -252,6 +252,9 @@ public abstract class AbstractOrderManager<T extends AbstractSignTypeRequest<?>> | |||
*/ | |||
private void paymentDetection(IssueOrderPay pay) throws ServiceHandleException { | |||
if (pay.getPayConfigId() == null) { | |||
throw newBusinessException("支付配置信息不存在"); | |||
} | |||
CommonPayConfig payConfig = payConfigRepo.findById(pay.getPayConfigId()).orElse(null); | |||
if (payConfig == null) | |||
throw newBusinessException("支付配置信息不存在" + pay.getPayConfigId()); |
@@ -86,7 +86,7 @@ feign: | |||
server: | |||
port: 8090 | |||
servlet: | |||
context-path: /ias/ | |||
context-path: /issues/ | |||
#应用相关配置 | |||
app: | |||
@@ -95,7 +95,7 @@ app: | |||
comm: | |||
# 自定义服务地址map,key为服务名、value为服务地址。如果配置了服务地址,接口调用时请求到该地址,如果没配置,默认请求到gateway | |||
serviceAddr: | |||
ias: http://127.0.0.1:8090 | |||
issues: http://127.0.0.1:8090 | |||
ods: http://100.64.2.98:8092 | |||
# 退费接口相关参数 |