|
|
@@ -360,7 +360,7 @@ public class YongchengOrderApiServiceImpl implements YongchengOrderApiService {
|
|
|
quoteRespVo.getWarnMessageList().addAll(requestInfoList);
|
|
|
}
|
|
|
//添加调用费用匹配功能
|
|
|
- feeRuleSchemeService.dealFeeOrderInfo(yaQuoteInfoVo, quoteRespVo, quoteVo.getAgreementId(), iac.getId());
|
|
|
+// feeRuleSchemeService.dealFeeOrderInfo(yaQuoteInfoVo, quoteRespVo, quoteVo.getAgreementId(), iac.getId());
|
|
|
return HttpResult.ok("报价成功", quoteRespVo);
|
|
|
|
|
|
}
|
|
|
@@ -371,8 +371,8 @@ public class YongchengOrderApiServiceImpl implements YongchengOrderApiService {
|
|
|
public boolean ciRepetitionInsure(RuoteResponse rr, Ruote m, List<String> requestInfoList) {
|
|
|
String errorMsg = rr.getHead().getErrorMessage();
|
|
|
|
|
|
- if (rr.getHead().getErrorCode().equals("009999") && errorMsg.contains("重复投保") && errorMsg.contains(
|
|
|
- "机动车交通事故强制险")) {
|
|
|
+ if (rr.getHead().getErrorCode().equals("009999") &&
|
|
|
+ errorMsg.contains("重复投保") && "Y".equals(m.getRequestLabel().getCondition().getBase().getCAppJqFlag())) {
|
|
|
requestInfoList.add(errorMsg);
|
|
|
log.info("永诚API方式 - xml请求 ------------报价 -> 交强重复投保----------------");
|
|
|
|
|
|
@@ -414,8 +414,8 @@ public class YongchengOrderApiServiceImpl implements YongchengOrderApiService {
|
|
|
*/
|
|
|
public boolean commerceRepetitionInsure(RuoteResponse rr, Ruote m, List<String> requestInfoList) {
|
|
|
String errorMsg = rr.getHead().getErrorMessage();
|
|
|
- if (rr.getHead().getErrorCode().equals("009999") && errorMsg.contains("重复投保") && errorMsg.contains(
|
|
|
- "机动车综合商业保险")) {
|
|
|
+ if (rr.getHead().getErrorCode().equals("009999") && errorMsg.contains("重复投保") &&
|
|
|
+ "Y".equals(m.getRequestLabel().getCondition().getBase().getAppSYFlag())) {
|
|
|
requestInfoList.add(errorMsg);
|
|
|
log.info("永诚API方式 - xml请求 ------------报价 -> 商业险重复投保----------------");
|
|
|
|