Skip to content

Commit

Permalink
MIFOS-5977 Group loan adjustment on the individual schedules
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Kaczmarczyk committed Feb 19, 2013
1 parent 285eff9 commit 31bf1aa
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -554,8 +554,7 @@ public void applyHistoricalAdjustment(String globalAccountNum, Integer paymentId
for (LoanBO memberAccount : ((LoanBO)accountBO).getMemberAccounts()){

AccountPaymentEntity memberPayment = memberAccount.getLastPmntToBeAdjusted();
if (memberPayment.getParentPaymentId() == null ||
!memberPayment.getParentPaymentId().getPaymentId().equals(accountPaymentEntity.getPaymentId())) {
if (memberPayment.getParentPaymentId() == null) {
continue;
}

Expand Down

0 comments on commit 31bf1aa

Please sign in to comment.