From acdc81d29fc08b5c74126e471b5602221a3737a7 Mon Sep 17 00:00:00 2001 From: jcoux Date: Thu, 28 Jul 2016 15:08:33 +0200 Subject: [PATCH] Trial Balance XLSX: Remove unused variables --- account_financial_report_qweb/report/trial_balance_xlsx.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/account_financial_report_qweb/report/trial_balance_xlsx.py b/account_financial_report_qweb/report/trial_balance_xlsx.py index 665faa98..fb21129f 100644 --- a/account_financial_report_qweb/report/trial_balance_xlsx.py +++ b/account_financial_report_qweb/report/trial_balance_xlsx.py @@ -15,11 +15,6 @@ class TrialBalanceXslx(abstract_report_xlsx.AbstractReportXslx): super(TrialBalanceXslx, self).__init__( name, table, rml, parser, header, store) - # Custom values needed to generate report - self.col_pos_initial_balance_label = 5 - self.col_count_final_balance_name = 5 - self.col_pos_final_balance_label = 5 - def _get_report_name(self): return _('Trial Balance')