alberto-art3ch commented on code in PR #4916:
URL: https://github.com/apache/fineract/pull/4916#discussion_r2265087468
##########
fineract-loan/src/main/java/org/apache/fineract/portfolio/loanaccount/domain/LoanTransaction.java:
##########
@@ -1023,4 +1029,13 @@ public boolean isBuyDownFeeAmortization() {
public boolean isBuyDownFeeAmortizationAdjustment() {
return
LoanTransactionType.BUY_DOWN_FEE_AMORTIZATION_ADJUSTMENT.equals(this.typeOf);
}
+
+ public void markAsProcessed() {
Review Comment:
Done code updated!
##########
fineract-loan/src/main/java/org/apache/fineract/portfolio/loanaccount/domain/LoanTransaction.java:
##########
@@ -144,6 +145,9 @@ public class LoanTransaction extends
AbstractAuditableWithUTCDateTimeCustom<Long
@OneToOne(cascade = CascadeType.ALL, orphanRemoval = true, fetch =
FetchType.LAZY, mappedBy = "loanTransaction")
private LoanReAgeParameter loanReAgeParameter;
+ @Transient
+ private boolean isProcessed = true;
Review Comment:
Done code updated!
--
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]