From f1ff05404fe343dca477db37ebc6a89de57f82e0 Mon Sep 17 00:00:00 2001 From: Jordi Ballester Alomar Date: Tue, 26 Mar 2019 06:27:07 +0100 Subject: [PATCH] [account_financial_report_qweb] when computing the trial balance, do not pass the parameter 'hide_account_at_0' to the computation of the general ledger. --- account_financial_report_qweb/report/trial_balance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/account_financial_report_qweb/report/trial_balance.py b/account_financial_report_qweb/report/trial_balance.py index 8e631831..a3d085a6 100644 --- a/account_financial_report_qweb/report/trial_balance.py +++ b/account_financial_report_qweb/report/trial_balance.py @@ -215,7 +215,6 @@ class TrialBalanceReportCompute(models.TransientModel): 'date_from': self.date_from, 'date_to': self.date_to, 'only_posted_moves': self.only_posted_moves, - 'hide_account_at_0': self.hide_account_at_0, 'foreign_currency': self.foreign_currency, 'company_id': self.company_id.id, 'filter_account_ids': [(6, 0, account_ids.ids)],