|
|
@@ -574,8 +574,6 @@ public class ZijinOrderApiServiceImpl implements ZijinOrderApiService {
|
|
|
Double.parseDouble(carShipTax.getLateFee()));
|
|
|
List<TaxArrears> taxArrearsList = Collections.singletonList(taxArrears);
|
|
|
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){
|
|
|
@@ -583,8 +581,11 @@ public class ZijinOrderApiServiceImpl implements ZijinOrderApiService {
|
|
|
if(priceInfoListDTO.getUbiPredictedInfo()!=null && priceInfoListDTO.getUbiPredictedInfo().getScore()!=null && !"".equals(priceInfoListDTO.getUbiPredictedInfo().getScore())){
|
|
|
String score = priceInfoListDTO.getUbiPredictedInfo().getScore();
|
|
|
quoteRespVo.setUbiPredictedInfoScore(score);
|
|
|
+ insAreaCompany.setUbiPredictedInfoScore(score);
|
|
|
}
|
|
|
}
|
|
|
+ insAreaCompanyService.insertCompanyAndOrders(insAreaCompany);
|
|
|
+ quoteRespVo.setCompanyId(orderNo);
|
|
|
//添加调用费用匹配功能
|
|
|
// feeRuleSchemeService.dealFeeOrderInfo(quoteInfoVo, quoteRespVo, ptlAgreementAttribution.getId(), insAreaCompany.getId());
|
|
|
return HttpResult.ok("报价成功", quoteRespVo);
|