adamsaghy commented on code in PR #4098:
URL: https://github.com/apache/fineract/pull/4098#discussion_r1803240988
##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/domain/LoanAccountDomainServiceJpa.java:
##########
@@ -159,6 +165,72 @@ public void
updateLoanCollateralStatus(Set<LoanCollateralManagement> loanCollate
this.loanCollateralManagementRepository.saveAll(loanCollateralManagementSet);
}
+ @Transactional
+ public LoanTransaction makeInterestRefund(Loan loan, final LocalDate
transactionDate, BigDecimal transactionAmount) {
+ final LoanTransactionType repaymentTransactionType =
LoanTransactionType.INTEREST_REFUND;
+ final PaymentDetail paymentDetail = null;
+ final ExternalId txnExternalId = null;
+ final boolean isRecoveryRepayment = false;
Review Comment:
`isRecoveryRepayment` not needed
--
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]