|
|
@@ -576,6 +576,15 @@ public class ZijinOrderApiServiceImpl implements ZijinOrderApiService {
|
|
|
insAreaCompany.setTaxArrears(JSON.parseArray(JSON.toJSONString(taxArrearsList)));
|
|
|
insAreaCompanyService.insertCompanyAndOrders(insAreaCompany);
|
|
|
quoteRespVo.setCompanyId(orderNo);
|
|
|
+ //add by hxl 2024-04-08 添加紫荆能源车的鼎然-车辆风险评分 返回前台
|
|
|
+ List<CalculatePremiumResponse.PriceInfoListDTO> priceInfoList = calculatePremiumResponse.getPriceInfoList();
|
|
|
+ if(priceInfoList!=null && priceInfoList.size()>0){
|
|
|
+ CalculatePremiumResponse.PriceInfoListDTO priceInfoListDTO = priceInfoList.get(0);
|
|
|
+ if(priceInfoListDTO.getUbiPredictedInfo()!=null && priceInfoListDTO.getUbiPredictedInfo().getScore()!=null && !"".equals(priceInfoListDTO.getUbiPredictedInfo().getScore())){
|
|
|
+ String score = priceInfoListDTO.getUbiPredictedInfo().getScore();
|
|
|
+ quoteRespVo.setUbiPredictedInfoScore(score);
|
|
|
+ }
|
|
|
+ }
|
|
|
//添加调用费用匹配功能
|
|
|
// feeRuleSchemeService.dealFeeOrderInfo(quoteInfoVo, quoteRespVo, ptlAgreementAttribution.getId(), insAreaCompany.getId());
|
|
|
return HttpResult.ok("报价成功", quoteRespVo);
|