|
|
@@ -1205,14 +1205,15 @@ handlingProportion,
|
|
|
public void updateNoHand(InsPlyIncomeVo insPlyIncomeVo) {
|
|
|
// 根据协议 如果是含增值税结算 用保费 * 如果是 不含税保费
|
|
|
InsPlyIncome insPlyIncome = baseMapper.getById(insPlyIncomeVo.getId());
|
|
|
- BeanUtils.copyProperties(insPlyIncomeVo, insPlyIncome);
|
|
|
- BigDecimal bigDecimal = this.getBigDecimal(insPlyIncomeVo.getNoPremium(), insPlyIncomeVo.getNoSuperviseCostsProportion());
|
|
|
+ BigDecimal bigDecimal = this.getBigDecimal(insPlyIncome.getNoPremium(), insPlyIncomeVo.getNoSuperviseCostsProportion());
|
|
|
insPlyIncome.setCommissionFeevalue(bigDecimal);
|
|
|
insPlyIncome.setCommissionFeerate(insPlyIncomeVo.getNoSuperviseCostsProportion());
|
|
|
insPlyIncome.setNoSuperviseCostsPremiums(bigDecimal);
|
|
|
insPlyIncome.setAllFeeValue(bigDecimal);
|
|
|
insPlyIncome.setUpdateUserId(BaseController.getUser().getId());
|
|
|
+ insPlyIncome.setNoSuperviseCostsProportion(insPlyIncomeVo.getNoSuperviseCostsProportion());
|
|
|
baseMapper.updateById(insPlyIncome);
|
|
|
+
|
|
|
insPlyIncomeVo.setOtherFeevalue(insPlyIncomeVo.getNoSuperviseCostsPremiums());
|
|
|
insPlyIncomeVo.setCrudStatus("2");
|
|
|
this.saveLog(insPlyIncomeVo);
|