#27 Transaction import: recurring transaction list not only active

This commit is contained in:
2021-09-01 11:11:02 +02:00
parent af353cde4e
commit ddec50eca8
2 changed files with 4 additions and 3 deletions

View File

@@ -292,7 +292,7 @@ public class TransactionController {
model.addAttribute("fromAccounts", fromAccounts); model.addAttribute("fromAccounts", fromAccounts);
model.addAttribute("toAccounts", toAccounts); model.addAttribute("toAccounts", toAccounts);
final ResponseEntity<Iterable<RecurringTransaction>> response = new GetAllActiveRecurringTransactionsTemplate() final ResponseEntity<Iterable<RecurringTransaction>> response = new GetAllRecurringTransactionsTemplate()
.exchange(this.financerConfig); .exchange(this.financerConfig);
final List<RecurringTransaction> recurringTransactionList = new ArrayList<>(); final List<RecurringTransaction> recurringTransactionList = new ArrayList<>();
final RecurringTransaction emptyRecurring = new RecurringTransaction(); final RecurringTransaction emptyRecurring = new RecurringTransaction();

View File

@@ -1,5 +1,6 @@
v48 -> v40: v48 -> v49:
- - #27 The recurring transaction selection during transaction import now contains all recurring transaction instead of
only the active ones
v47 -> v48: v47 -> v48:
- Added new property 'transaction type' to a transaction, denoting the type of the transaction, e.g. asset swap, - Added new property 'transaction type' to a transaction, denoting the type of the transaction, e.g. asset swap,