From 418a682f7e81e5f2db5fc384a748e75b84493129 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 22 Apr 2021 19:55:43 +0200 Subject: [PATCH] Remove bad account types. --- config/firefly.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/firefly.php b/config/firefly.php index e69dfb966d..ddefd13170 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -631,8 +631,7 @@ return [ 'expected_source_types' => [ 'source' => [ TransactionTypeModel::WITHDRAWAL => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], - TransactionTypeModel::DEPOSIT => [AccountType::REVENUE, AccountType::CASH, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE, - AccountType::INITIAL_BALANCE, AccountType::RECONCILIATION,], + TransactionTypeModel::DEPOSIT => [AccountType::REVENUE, AccountType::CASH, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], TransactionTypeModel::TRANSFER => [AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE], TransactionTypeModel::OPENING_BALANCE => [AccountType::INITIAL_BALANCE, AccountType::ASSET, AccountType::LOAN, AccountType::DEBT, AccountType::MORTGAGE,],