|
@@ -100,7 +100,7 @@ public class PerformOrderServiceImpl implements IPerformOrderService {
|
|
|
resultStr = restTemplate.getForObject(url, String.class);
|
|
|
} catch (Exception e) {
|
|
|
log.error("回调CP充值接口异常, orderInfo : {}, e : {}", JsonUtil.toString(orderInfo), e.getMessage());
|
|
|
- throw new BaseException("回调CP充值接口异常");
|
|
|
+ return false;
|
|
|
}
|
|
|
PushCpResult pushCpResult = JsonUtil.toObj(resultStr, PushCpResult.class);
|
|
|
boolean pushSuccess = Objects.equals(pushCpResult.getResult(), PushCpResult.SUCCESS_CODE);
|