Browse Source

[FIX] Bug in the formula of the balance column in the Trial Balance XLS report when it is filtered by date

6.1
unknown 10 years ago
committed by Yannick Vaucher
parent
commit
27f84e0d85
  1. 2
      account_financial_report_webkit_xls/__openerp__.py
  2. 6
      account_financial_report_webkit_xls/report/trial_balance_xls.py

2
account_financial_report_webkit_xls/__openerp__.py

@ -21,7 +21,7 @@
##############################################################################
{
'name': 'Add XLS export to accounting reports',
'version': '0.4',
'version': '0.4.1',
'license': 'AGPL-3',
'author': 'Noviat',
'category': 'Generic Modules/Accounting',

6
account_financial_report_webkit_xls/report/trial_balance_xls.py

@ -218,9 +218,9 @@ class trial_balance_xls(report_xls):
('account', account_span, 0, 'text', current_account.name),
]
if _p.comparison_mode == 'no_comparison':
debit_cell = rowcol_to_cell(row_pos, 3)
credit_cell = rowcol_to_cell(row_pos, 4)
debit_cell = rowcol_to_cell(row_pos, 4)
credit_cell = rowcol_to_cell(row_pos, 5)
bal_formula = debit_cell + '-' + credit_cell
if _p.initial_balance_mode:

Loading…
Cancel
Save