ruchiD commented on code in PR #3467:
URL: https://github.com/apache/fineract/pull/3467#discussion_r1336003976


##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/AbstractLoanScheduleGenerator.java:
##########
@@ -430,6 +435,30 @@ private LoanScheduleModel generate(final MathContext mc, 
final LoanApplicationTe
                 totalOutstanding);
     }
 
+    private void 
checkDownPaymentInstallmentForOverlappingInstallments(Collection<LoanScheduleModelPeriod>
 periods,
+            LocalDate scheduledDueDate) {
+        Integer downPaymentPeriodNumber = 0;
+        Integer repaymentPeriodNumber = 0;
+        List<LoanScheduleModelPeriod> overlappingPeriods = periods.stream()
+                .filter(p -> p.periodDueDate() != null && 
p.periodDueDate().isEqual(scheduledDueDate))
+                
.sorted(Comparator.comparing(LoanScheduleModelPeriod::periodNumber)).toList();
+        if (overlappingPeriods.size() == 2) {

Review Comment:
   hi Adam, I checked multiple disbursements on same date scenario for 
overlapping installments and for this case also there are only two overlapping 
installments are getting created for a given period with the amounts getting 
updated with  adding new disbursement amount. I added a test for this scenario 
in LoanAccountPaymentAllocationWithOverlappingDownPaymentInstallmentTest



-- 
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]

Reply via email to