This is an automated email from the ASF dual-hosted git repository.
arnold pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
from 71d2e5105 FINERACT-1971: Fixing obligation met on date when adding
charge after maturity
new 2ea23be9a FINERACT-1981: Progressive loan schedule handling
new 5d62cfef0 FINERACT-1968: Adv.paym.disbursement
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../infrastructure/core/service/MathUtil.java | 17 +
.../organisation/monetary/domain/Money.java | 9 +
.../portfolio/calendar/service/CalendarUtils.java | 5 +-
.../portfolio/loanaccount/domain/Loan.java | 28 +-
.../domain/LoanRepaymentScheduleInstallment.java | 16 +-
.../loanschedule/domain/LoanApplicationTerms.java | 46 +-
.../domain/LoanScheduleGeneratorFactory.java | 2 +-
.../loanschedule/domain/LoanScheduleModel.java | 16 +-
.../loanschedule/domain/LoanScheduleType.java | 7 +-
.../domain/PaymentPeriodsInOneYearCalculator.java | 6 +-
.../loanproduct/LoanProductConstants.java | 3 +
.../portfolio/loanproduct/domain/LoanProduct.java | 16 +-
.../domain/LoanProductRelatedDetail.java | 17 +-
.../tenant/module/loan/module-changelog-master.xml | 1 +
..._introduce_loan_schedule_type_configuration.xml | 6 +-
...dvancedPaymentScheduleTransactionProcessor.java | 52 +-
...> AbstractCumulativeLoanScheduleGenerator.java} | 497 +++++-----------
.../AbstractProgressiveLoanScheduleGenerator.java | 629 +++++++++++++++++++++
...iningBalanceInterestLoanScheduleGenerator.java} | 21 +-
...mulativeFlatInterestLoanScheduleGenerator.java} | 22 +-
.../DefaultLoanScheduleGeneratorFactory.java | 35 +-
.../DefaultPaymentPeriodsInOneYearCalculator.java | 73 ++-
.../domain/DefaultScheduledDateGenerator.java | 14 +-
.../LoanScheduleModelDisbursementPeriod.java | 3 +-
.../domain/LoanTermVariationParams.java | 9 +-
.../domain/ProgressiveLoanScheduleGenerator.java | 67 +++
.../domain/ScheduleCurrentPeriodParams.java | 160 ++++++
.../service/LoanScheduleAssembler.java | 20 +-
.../LoanReschedulePreviewPlatformServiceImpl.java | 3 +-
...nRescheduleRequestWritePlatformServiceImpl.java | 3 +-
.../serialization/LoanProductDataValidator.java | 8 +-
...PaymentAllocationLoanRepaymentScheduleTest.java | 99 +++-
.../common/loans/LoanProductTestBuilder.java | 7 +
33 files changed, 1412 insertions(+), 505 deletions(-)
copy
fineract-core/src/main/java/org/apache/fineract/infrastructure/core/domain/ContextHolder.java
=>
fineract-loan/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/LoanScheduleType.java
(86%)
copy
fineract-provider/src/main/resources/db/changelog/tenant/parts/0126_add_loan_product_installment_level_delinquency.xml
=>
fineract-loan/src/main/resources/db/changelog/tenant/module/loan/parts/1010_introduce_loan_schedule_type_configuration.xml
(84%)
rename
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/{AbstractLoanScheduleGenerator.java
=> AbstractCumulativeLoanScheduleGenerator.java} (90%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/AbstractProgressiveLoanScheduleGenerator.java
rename
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/{DecliningBalanceInterestLoanScheduleGenerator.java
=> CumulativeDecliningBalanceInterestLoanScheduleGenerator.java} (92%)
rename
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/{FlatInterestLoanScheduleGenerator.java
=> CumulativeFlatInterestLoanScheduleGenerator.java} (82%)
copy
fineract-loan/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/LoanScheduleGeneratorFactory.java
=>
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/LoanTermVariationParams.java
(74%)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/ProgressiveLoanScheduleGenerator.java
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/loanschedule/domain/ScheduleCurrentPeriodParams.java