|
@@ -160,11 +160,11 @@ public class InsOrdersEditingVo extends InsOrders implements Serializable {
|
|
|
this.inscompany = insAreaCompany.getInscompany();
|
|
this.inscompany = insAreaCompany.getInscompany();
|
|
|
this.kindList = ObjectUtils.isEmpty(insAreaCompany.getKindinfo()) ? new ArrayList<>() :
|
|
this.kindList = ObjectUtils.isEmpty(insAreaCompany.getKindinfo()) ? new ArrayList<>() :
|
|
|
insAreaCompany.getKindinfo().toJavaList(QuoteKindRespVo.class);
|
|
insAreaCompany.getKindinfo().toJavaList(QuoteKindRespVo.class);
|
|
|
- this.jqPremium = insAreaCompany.getJqpremium().doubleValue();
|
|
|
|
|
- this.syPremium = insAreaCompany.getSypremium().doubleValue();
|
|
|
|
|
- this.jyPremium = insAreaCompany.getJypremium().doubleValue();
|
|
|
|
|
- this.taxAmount = insAreaCompany.getTaxamount().doubleValue();
|
|
|
|
|
- this.sumPermium = insAreaCompany.getSumpremium().doubleValue();
|
|
|
|
|
|
|
+ this.jqPremium = ObjectUtils.isEmpty(insAreaCompany.getJqpremium()) ? 0.0 :insAreaCompany.getJqpremium().doubleValue();
|
|
|
|
|
+ this.syPremium = ObjectUtils.isEmpty(insAreaCompany.getSypremium()) ? 0.0 :insAreaCompany.getSypremium().doubleValue();
|
|
|
|
|
+ this.jyPremium = ObjectUtils.isEmpty(insAreaCompany.getJypremium()) ? 0.0 :insAreaCompany.getJypremium().doubleValue();
|
|
|
|
|
+ this.taxAmount = ObjectUtils.isEmpty(insAreaCompany.getTaxamount()) ? 0.0 :insAreaCompany.getTaxamount().doubleValue();
|
|
|
|
|
+ this.sumPermium = ObjectUtils.isEmpty(insAreaCompany.getSumpremium()) ? 0.0 :insAreaCompany.getSumpremium().doubleValue();
|
|
|
this.startDateJq = insAreaCompany.getJqStartDate();
|
|
this.startDateJq = insAreaCompany.getJqStartDate();
|
|
|
this.endDateJq = insAreaCompany.getJqEndDate();
|
|
this.endDateJq = insAreaCompany.getJqEndDate();
|
|
|
this.startDateSy = insAreaCompany.getSyStartDate();
|
|
this.startDateSy = insAreaCompany.getSyStartDate();
|
|
@@ -175,6 +175,7 @@ public class InsOrdersEditingVo extends InsOrders implements Serializable {
|
|
|
this.lossRation = insAreaCompany.getLossRation();
|
|
this.lossRation = insAreaCompany.getLossRation();
|
|
|
this.jqLossRation = insAreaCompany.getJqLossRation();
|
|
this.jqLossRation = insAreaCompany.getJqLossRation();
|
|
|
this.syLossRation = insAreaCompany.getSyLossRation();
|
|
this.syLossRation = insAreaCompany.getSyLossRation();
|
|
|
|
|
+ this.ubiPredictedInfoScore = insAreaCompany.getUbiPredictedInfoScore();
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|