@@ -13,7 +13,7 @@ import java.util.Objects;
public enum InsOrderStatusEnum implements IBaseEnum {
//所有未提交核保的均为报价中(包括拒保订单 )
- QUOTE_ING("0", "报价中", 1, 0),
+ QUOTE_ING("0", "报价完成", 1, 0),
//已提交核保,并转人工核保状态
WAIT_AUDIT("1", "待核保", 2, 0),
@@ -300,7 +300,7 @@ public class PtlSchemeServiceImpl extends ServiceImpl<PtlSchemeMapper, PtlScheme
}else{
List<InsDrivingIntentionInsurance> allInsurance = new ArrayList<>();
l.getDrvingList().forEach(x -> {
- if(!x.getInsDrivingIntentionInsurances().isEmpty()){
+ if(x.getInsDrivingIntentionInsurances()!= null && !x.getInsDrivingIntentionInsurances().isEmpty()){
allInsurance.addAll(x.getInsDrivingIntentionInsurances());
}
allInsurance.add(x);