adamsaghy commented on code in PR #5859:
URL: https://github.com/apache/fineract/pull/5859#discussion_r3277088145
##########
fineract-working-capital-loan/src/main/java/org/apache/fineract/portfolio/workingcapitalloan/data/WorkingCapitalLoanTransactionData.java:
##########
@@ -55,4 +57,6 @@ public class WorkingCapitalLoanTransactionData implements
Serializable {
private BigDecimal principalPortion;
private BigDecimal feeChargesPortion;
private BigDecimal penaltyChargesPortion;
+ // Income recognized in this transaction (e.g. discount fee on
disbursement).
+ private BigDecimal amortizedIncomePortion;
Review Comment:
No need for this field...
##########
fineract-working-capital-loan/src/main/java/org/apache/fineract/portfolio/workingcapitalloan/mapper/ProjectedAmortizationScheduleMapper.java:
##########
@@ -65,6 +65,7 @@ private ProjectedAmortizationSchedulePaymentData
toPaymentData(final ProjectedPa
.actualAmortizationAmount(roundMoney(payment.actualAmortizationAmount())) //
.incomeModification(roundMoney(payment.incomeModification()))
//
.deferredBalance(roundMoney(payment.deferredBalance())) //
+ .feesAmount(BigDecimal.ZERO) //
Review Comment:
Please remove
--
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]