Browse Source

in general ledger report, the sum is done on wrong column

pull/66/head
Laetitia Gangloff 9 years ago
parent
commit
f7bf61aab4
  1. 12
      account_financial_report_webkit_xls/report/general_ledger_xls.py

12
account_financial_report_webkit_xls/report/general_ledger_xls.py

@ -334,14 +334,14 @@ class general_ledger_xls(report_xls):
row_pos = self.xls_write_row(
ws, row_pos, row_data, ll_cell_style)
debit_start = rowcol_to_cell(row_start, 8)
debit_end = rowcol_to_cell(row_pos - 1, 8)
debit_start = rowcol_to_cell(row_start, 9)
debit_end = rowcol_to_cell(row_pos - 1, 9)
debit_formula = 'SUM(' + debit_start + ':' + debit_end + ')'
credit_start = rowcol_to_cell(row_start, 9)
credit_end = rowcol_to_cell(row_pos - 1, 9)
credit_start = rowcol_to_cell(row_start, 10)
credit_end = rowcol_to_cell(row_pos - 1, 10)
credit_formula = 'SUM(' + credit_start + ':' + credit_end + ')'
balance_debit = rowcol_to_cell(row_pos, 8)
balance_credit = rowcol_to_cell(row_pos, 9)
balance_debit = rowcol_to_cell(row_pos, 9)
balance_credit = rowcol_to_cell(row_pos, 10)
balance_formula = balance_debit + '-' + balance_credit
c_specs = [
('acc_title', COLS_TOT - 4, 0, 'text',

Loading…
Cancel
Save