adamsaghy commented on code in PR #5761:
URL: https://github.com/apache/fineract/pull/5761#discussion_r3187816792
##########
fineract-core/src/main/java/org/apache/fineract/portfolio/savings/domain/SavingsHelper.java:
##########
@@ -126,37 +127,37 @@ private LocalDate
determineInterestPostingPeriodEndDateFrom(final LocalDate peri
case INVALID:
break;
case DAILY:
- // produce period end date on current day
- periodEndDate = periodStartDate;
+ // interest posting occurs on the next day after current day
+ periodEndDate = periodStartDate.plusDays(1);
Review Comment:
hm... i see.. i might need to understand this part of the logic more
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]