adamsaghy commented on code in PR #2442:
URL: https://github.com/apache/fineract/pull/2442#discussion_r938497492
##########
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/domain/Loan.java:
##########
@@ -287,6 +288,10 @@ public class Loan extends
AbstractAuditableWithUTCDateTimeCustom {
@Column(name = "loan_product_counter")
private Integer loanProductCounter;
+ @ManyToOne(fetch = FetchType.LAZY)
+ @JoinColumn(name = "delinquency_range_id", nullable = true)
+ private DelinquencyRange delinquencyRange;
Review Comment:
@josehernandezfintecheandomx If LoanDeliquencyTags are for history:
- please rename it to "LoanDeliquencyHistory"
- In the LoanDeliquencyTags, the loan OneToOne must be changed to ManyToOne
as well!
--
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]