From 863b07951a41cecb76435054ae80a6ad099c12ba Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 5 May 2020 20:53:56 +0200 Subject: [PATCH] Fix #3339 --- app/Support/Binder/JournalList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Binder/JournalList.php b/app/Support/Binder/JournalList.php index fa3b0d118d..2ae8f9ad94 100644 --- a/app/Support/Binder/JournalList.php +++ b/app/Support/Binder/JournalList.php @@ -48,7 +48,7 @@ class JournalList implements BinderInterface // get the journals by using the collector. /** @var GroupCollectorInterface $collector */ $collector = app(GroupCollectorInterface::class); - $collector->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]); + $collector->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER, TransactionType::RECONCILIATION]); $collector->withCategoryInformation()->withBudgetInformation()->withTagInformation()->withAccountInformation(); $collector->setJournalIds($list); $result = $collector->getExtractedJournals();