You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ar...@apache.org on 2023/02/23 16:31:05 UTC

[fineract] branch develop updated: FINERACT-1724: Add recalculationCompoundingFrequencyInterval and recalculationCompoundingFrequencyOnDayType fields

This is an automated email from the ASF dual-hosted git repository.

arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 9b8a16a76 FINERACT-1724: Add recalculationCompoundingFrequencyInterval and recalculationCompoundingFrequencyOnDayType fields
9b8a16a76 is described below

commit 9b8a16a76bcf90bbbfd62bb1d7ecdc99b26eb0c5
Author: Adam Saghy <ad...@gmail.com>
AuthorDate: Thu Feb 23 15:22:43 2023 +0100

    FINERACT-1724: Add recalculationCompoundingFrequencyInterval and recalculationCompoundingFrequencyOnDayType fields
---
 .../portfolio/loanproduct/api/LoanProductsApiResourceSwagger.java | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanproduct/api/LoanProductsApiResourceSwagger.java b/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanproduct/api/LoanProductsApiResourceSwagger.java
index b1735622b..86bd57203 100644
--- a/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanproduct/api/LoanProductsApiResourceSwagger.java
+++ b/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanproduct/api/LoanProductsApiResourceSwagger.java
@@ -165,6 +165,10 @@ final class LoanProductsApiResourceSwagger {
         public Integer recalculationRestFrequencyType;
         @Schema(example = "1")
         public Integer recalculationRestFrequencyInterval;
+        @Schema(example = "1")
+        public Integer recalculationCompoundingFrequencyInterval;
+        @Schema(example = "1")
+        public Integer recalculationCompoundingFrequencyOnDayType;
 
         // Accounting
         @Schema(example = "3")
@@ -461,6 +465,10 @@ final class LoanProductsApiResourceSwagger {
             public GetLoanProductsPreClosureInterestCalculationStrategy preClosureInterestCalculationStrategy;
             @Schema(example = "true")
             public Boolean isArrearsBasedOnOriginalSchedule;
+            @Schema(example = "1")
+            public Integer recalculationCompoundingFrequencyInterval;
+            @Schema(example = "1")
+            public Integer recalculationCompoundingFrequencyOnDayType;
         }
 
         static final class GetLoanProductsAccountingRule {