diff --git a/src/accounting/report/reports/balance_sheet.py b/src/accounting/report/reports/balance_sheet.py index ea0bd17..d29c9a3 100644 --- a/src/accounting/report/reports/balance_sheet.py +++ b/src/accounting/report/reports/balance_sheet.py @@ -213,7 +213,7 @@ class AccountCollector: :return: The balance. """ conditions.extend([sa.not_(Account.base_code.startswith(x)) - for x in {"1", "2"}]) + for x in {"1", "2", "3"}]) balance_func: sa.Function = sa.func.sum(sa.case( (JournalEntry.is_debit, JournalEntry.amount), else_=-JournalEntry.amount))