From 5c1aa8bbc48fe28eaf4a73fac7671a3fa62c3fc0 Mon Sep 17 00:00:00 2001 From: Alex Comba Date: Wed, 8 Feb 2017 17:42:20 +0100 Subject: [PATCH] [FIX] account_financial_report_webkit_xls: move empty cells one cell right to align cells in case of 'Initial Balance' --- .../report/general_ledger_xls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_financial_report_webkit_xls/report/general_ledger_xls.py b/account_financial_report_webkit_xls/report/general_ledger_xls.py index 304f7fd7..caebd35a 100644 --- a/account_financial_report_webkit_xls/report/general_ledger_xls.py +++ b/account_financial_report_webkit_xls/report/general_ledger_xls.py @@ -213,7 +213,7 @@ class general_ledger_xls(report_xls): cumul_balance_curr = init_balance.get( 'init_balance_currency') or 0.0 c_specs = [('empty%s' % x, 1, 0, 'text', None) - for x in range(6)] + for x in range(7)] c_specs += [ ('init_bal', 1, 0, 'text', _('Initial Balance')), ('counterpart', 1, 0, 'text', None),