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 7b75d63d74 Merge pull request #6184
add c6328ab306 FINERACT-754: Preserve transfer links during overdraft
recalculation
new 6ea9efd542 Merge pull request #6192
The 1 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:
.../service/AccountingProcessorHelper.java | 16 +-
.../account/domain/AccountTransferRepository.java | 3 +
.../account/domain/AccountTransferTransaction.java | 8 +
.../SavingsAccountTransfersServiceImpl.java | 133 +++++++++++
.../domain/SavingsAccountDomainServiceJpa.java | 12 +-
...countWritePlatformServiceJpaRepositoryImpl.java | 18 +-
.../savings/starter/SavingsConfiguration.java | 9 +-
.../service/AccountingProcessorHelperTest.java | 125 ++++++++++
.../SavingsAccountTransfersServiceImplTest.java | 144 +++++++++++
...tWritePlatformServiceJpaRepositoryImplTest.java | 28 ++-
.../portfolio/savings/domain/SavingsAccount.java | 17 ++
...a => SavingsAccountTransactionReplacement.java} | 16 +-
.../service/SavingsAccountTransfersService.java | 19 +-
.../domain/SavingsAccountAccountingBridgeTest.java | 64 +++++
.../savings/AccountTransferOverdraftTest.java | 266 +++++++++++++++++++++
15 files changed, 839 insertions(+), 39 deletions(-)
create mode 100644
fineract-provider/src/main/java/org/apache/fineract/portfolio/account/service/SavingsAccountTransfersServiceImpl.java
create mode 100644
fineract-provider/src/test/java/org/apache/fineract/accounting/journalentry/service/AccountingProcessorHelperTest.java
create mode 100644
fineract-provider/src/test/java/org/apache/fineract/portfolio/account/service/SavingsAccountTransfersServiceImplTest.java
copy
fineract-savings/src/main/java/org/apache/fineract/portfolio/savings/domain/{DepositAccountOnHoldTransactionRepository.java
=> SavingsAccountTransactionReplacement.java} (63%)
copy
fineract-provider/src/main/java/org/apache/fineract/infrastructure/event/business/domain/savings/SavingsActivateBusinessEvent.java
=>
fineract-savings/src/main/java/org/apache/fineract/portfolio/savings/service/SavingsAccountTransfersService.java
(67%)
create mode 100644
fineract-savings/src/test/java/org/apache/fineract/portfolio/savings/domain/SavingsAccountAccountingBridgeTest.java
create mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/savings/AccountTransferOverdraftTest.java