Browse Source

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

pull/7/merge
unknown 10 years ago
committed by Pedro M. Baeza
parent
commit
376146e083
  1. 4
      account_financial_report_webkit_xls/report/trial_balance_xls.py

4
account_financial_report_webkit_xls/report/trial_balance_xls.py

@ -219,8 +219,8 @@ class trial_balance_xls(report_xls):
]
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