reluxa commented on code in PR #3699:
URL: https://github.com/apache/fineract/pull/3699#discussion_r1463003493
##########
fineract-provider/src/main/java/org/apache/fineract/cob/loan/ApplyChargeToOverdueLoansBusinessStep.java:
##########
@@ -32,13 +34,15 @@ public class ApplyChargeToOverdueLoansBusinessStep
implements LoanCOBBusinessSte
private final LoanReadPlatformService loanReadPlatformService;
private final LoanChargeWritePlatformService
loanChargeWritePlatformService;
+ private final BusinessEventNotifierService businessEventNotifierService;
@Override
public Loan execute(Loan loan) {
final Collection<OverdueLoanScheduleData> overdueLoanScheduleDataList
= loanReadPlatformService
.retrieveAllOverdueInstallmentsForLoan(loan);
loanChargeWritePlatformService.applyOverdueChargesForLoan(loan.getId(),
overdueLoanScheduleDataList);
+ businessEventNotifierService.notifyPostBusinessEvent(new
LoanAccountSnapshotBusinessEvent(loan));
Review Comment:
plz revert this change
--
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]