This is an automated email from the ASF dual-hosted git repository.
adamsaghy pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
from ed8e9d1376 FINERACT-2181: Update dependency
org.liquibase.ext:liquibase-postgresql to v5
new 3efafa778e FINERACT-2354: Introduce reaging preview API
new 01ca515e8f FINERACT-2354: e2e test scenarios for re-aging preview
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:
.../test/stepdef/loan/LoanReAgingStepDef.java | 228 +++-
.../fineract/test/support/TestContextKey.java | 1 +
.../src/test/resources/features/Loan.feature | 19 +-
.../resources/features/LoanAccrualActivity.feature | 73 +-
.../resources/features/LoanBuyDownFees.feature | 84 +-
.../features/LoanCapitalizedIncome.feature | 218 +++-
.../test/resources/features/LoanReAging.feature | 442 +++++++-
.../resources/features/LoanReAgingPreview.feature | 1152 ++++++++++++++++++++
.../features/LoanUpdateApprovedAmount.feature | 22 +-
.../LoanUpdateAvailableDisbursementAmount.feature | 31 +-
...LoanRepaymentScheduleInstallmentRepository.java | 8 +
.../service/ReprocessLoanTransactionsService.java | 2 +
...dvancedPaymentScheduleTransactionProcessor.java | 2 +-
.../api/LoanTransactionsApiResource.java | 28 +
.../api/request/ReAgePreviewRequest.java | 81 ++
.../loan/reaging/LoanReAgingCommandHandler.java | 4 +-
.../reaging/LoanUndoReAgingCommandHandler.java | 4 +-
.../service/LoanReadPlatformServiceImpl.java | 392 +------
.../service/LoanRepaymentScheduleService.java | 418 +++++++
.../ReprocessLoanTransactionsServiceImpl.java | 8 +
...ingServiceImpl.java => LoanReAgingService.java} | 164 ++-
.../service/reaging/LoanReAgingValidator.java | 49 +-
.../starter/LoanAccountConfiguration.java | 6 +-
.../api/ReAgePreviewRequestValidationTest.java | 361 ++++++
.../service/reaging/LoanReAgingValidatorTest.java | 24 +-
.../main/resources/ValidationMessages.properties | 10 +
26 files changed, 3253 insertions(+), 578 deletions(-)
create mode 100644
fineract-e2e-tests-runner/src/test/resources/features/LoanReAgingPreview.feature
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/api/request/ReAgePreviewRequest.java
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/service/LoanRepaymentScheduleService.java
rename
fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/service/reaging/{LoanReAgingServiceImpl.java
=> LoanReAgingService.java} (65%)
create mode 100644
fineract-provider/src/test/java/org/apache/fineract/portfolio/loanaccount/api/ReAgePreviewRequestValidationTest.java