|
|
@@ -79,7 +79,9 @@ public class InsPlySettleServiceImpl extends ServiceImpl<InsPlySettleMapper, Ins
|
|
|
insPlySettleDetailMapper.insert(insPlySettleDetail);
|
|
|
//修改ins_ply_income
|
|
|
insPlyIncome.setFinalFeeValue(insPlyIncome.getAllFeeValue());
|
|
|
- insPlyIncomeMapper.updateById(insPlyIncome);
|
|
|
+ LambdaQueryWrapper<InsPlyIncome> queryWrapper=new LambdaQueryWrapper();
|
|
|
+ queryWrapper.eq(InsPlyIncome::getPolicyno,plyNo);
|
|
|
+ insPlyIncomeMapper.update(insPlyIncome,queryWrapper);
|
|
|
|
|
|
commissionFeevalue=commissionFeevalue.add(insPlyIncome.getCommissionFeevalue());
|
|
|
otherFeevalue=otherFeevalue.add(insPlyIncome.getOtherFeevalue());
|