|
|
@@ -59,7 +59,7 @@ public class InsuranceHandlingSettlementMonthServiceImpl extends ServiceImpl<Ins
|
|
|
String formattedDateString = formatDateMinusOneMonth(item.getIncomeSigningTime());
|
|
|
if (StringUtils.isNotEmpty(formattedDateString)) {
|
|
|
InsuranceHandlingSettlementMonthDto insuranceHandlingSettlementMonthDto = latestByTaskId.get(item.getIncomeSigningTime());
|
|
|
- insuranceHandlingSettlementMonthDto.setTotalAmount(insuranceHandlingSettlementMonthDto.getTotalAmount().add(item.getTotalAmount()));
|
|
|
+ insuranceHandlingSettlementMonthDto.setTotalAmount(insuranceHandlingSettlementMonthDto.getTotalAmount());
|
|
|
latestByTaskId.remove(item.getIncomeSigningTime());
|
|
|
latestByTaskId.put(formattedDateString, insuranceHandlingSettlementMonthDto);
|
|
|
|