|
|
@@ -260,14 +260,16 @@ public class YongchengOrderApiServiceImpl implements YongchengOrderApiService {
|
|
|
|
|
|
if (rr.getHead().getErrorCode().equals("009999") && errorMsg.contains("重复投保")) {
|
|
|
// 商业险
|
|
|
- boolean appSYFlag = false;
|
|
|
+ boolean appSYFlag = "Y".equals(m.getRequestLabel().getCondition().getBase().getAppSYFlag());
|
|
|
// 交强险
|
|
|
- boolean cAppJqFlag = false;
|
|
|
+ boolean cAppJqFlag = "Y".equals(m.getRequestLabel().getCondition().getBase().getCAppJqFlag());
|
|
|
|
|
|
if (errorMsg.contains("机动车综合商业保险")) {
|
|
|
- appSYFlag = true;
|
|
|
+ cAppJqFlag = false;
|
|
|
} else if (errorMsg.contains("机动车交通事故强制险")) {
|
|
|
- cAppJqFlag = true;
|
|
|
+ appSYFlag = false;
|
|
|
+ } else {
|
|
|
+ appSYFlag = false;
|
|
|
}
|
|
|
|
|
|
//处理返回信息
|
|
|
@@ -380,7 +382,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);
|
|
|
|
|
|
}
|