Commit ade2161f by Chao Sun

年金单次计算时,如果有提领信息,提领信息结束时间为现金价值的年度+1

parent 21e2d83b
......@@ -276,7 +276,6 @@
console.log(this.businessType)
if(this.calcuteMethod==='1'){
// 计算
this.irrAndSimpleCalte();
}else if(this.calcuteMethod === '2'){
//批量
......@@ -402,6 +401,10 @@
})
return;
}
//年金单次计算时,如果有提领信息,提领信息结束时间为现金价值的年度+1
if(this.calcuteType == 2 && this.yearWithdrawalInfos.length>0){
this.yearWithdrawalInfos[0].withdrawalEnd = Number(this.irrAndSimple.nyear) + 1
}
}
const params = {
...this.irrAndSimpleCalcuteParam,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment