|
|
@@ -278,6 +278,8 @@ public class InsCrawlerOrderServiceImpl implements InsCrawlerOrderService {
|
|
|
BigDecimal rounded = total.setScale(2, RoundingMode.HALF_UP);
|
|
|
quoteRespVo.setJyPremium(rounded.doubleValue());
|
|
|
}
|
|
|
+ } else if (t.getCompanyId().equals("PICC000000")) {
|
|
|
+ quoteRespVo.setBIdiscount(response.getOther().getBiDiscount());
|
|
|
}
|
|
|
|
|
|
//处理订单信息
|
|
|
@@ -629,6 +631,10 @@ public class InsCrawlerOrderServiceImpl implements InsCrawlerOrderService {
|
|
|
if(other.getRateFloatFlag() != null && !other.getRateFloatFlag().isEmpty()){
|
|
|
quoteRespVo.setRateFloatFlag(other.getRateFloatFlag());
|
|
|
}
|
|
|
+ // 人保商业折扣
|
|
|
+ if(other.getBiDiscount() != null && !other.getBiDiscount().isEmpty()){
|
|
|
+ quoteRespVo.setBIdiscount(other.getBiDiscount());
|
|
|
+ }
|
|
|
return quoteRespVo;
|
|
|
}
|
|
|
|