[FIX]account_financial_report_webkit_xls: pep8
parent
08443d4cee
commit
d2800c0633
|
@ -98,8 +98,8 @@ class general_ledger_xls(report_xls):
|
|||
('df', 3, 0, 'text', _p.filter_form(data) ==
|
||||
'filter_date' and _('Dates Filter') or _('Periods Filter')),
|
||||
('af', 1, 0, 'text', _('Accounts Filter')),
|
||||
('tm', 2, 0, 'text', _('Target Moves')),
|
||||
('ib', 2, 0, 'text', _('Initial Balance')),
|
||||
('tm', 2, 0, 'text', _('Target Moves')),
|
||||
('ib', 2, 0, 'text', _('Initial Balance')),
|
||||
|
||||
]
|
||||
row_data = self.xls_row_template(c_specs, [x[0] for x in c_specs])
|
||||
|
|
|
@ -639,7 +639,7 @@ class open_invoices_xls(report_xls):
|
|||
None, self.style_account_title_right),
|
||||
]
|
||||
else:
|
||||
c_specs += [('cumul_bal_curr', 1, 0, 'text', "-", None,
|
||||
c_specs += [('cumul_bal_curr', 1, 0, 'text', "-", None,
|
||||
self.style_account_title_right),
|
||||
('curr_name', 1, 0, 'text', "",
|
||||
None, self.style_account_title_right)
|
||||
|
|
|
@ -100,8 +100,8 @@ class partner_ledger_xls(report_xls):
|
|||
('df', 2, 0, 'text', _p.filter_form(data) ==
|
||||
'filter_date' and _('Dates Filter') or _('Periods Filter')),
|
||||
('af', 1, 0, 'text', _('Accounts Filter')),
|
||||
('tm', 2, 0, 'text', _('Target Moves')),
|
||||
('ib', nbr_columns - 8, 0, 'text', _('Initial Balance')),
|
||||
('tm', 2, 0, 'text', _('Target Moves')),
|
||||
('ib', nbr_columns - 8, 0, 'text', _('Initial Balance')),
|
||||
|
||||
]
|
||||
row_data = self.xls_row_template(c_specs, [x[0] for x in c_specs])
|
||||
|
|
|
@ -71,10 +71,10 @@ class partners_balance_xls(report_xls):
|
|||
('df', 1, 0, 'text', _p.filter_form(data) == 'filter_date' and _(
|
||||
'Dates Filter') or _('Periods Filter'), None,
|
||||
cell_style_center),
|
||||
('pf', 1, 0, 'text', _('Partners Filter'),
|
||||
('pf', 1, 0, 'text', _('Partners Filter'),
|
||||
None, cell_style_center),
|
||||
('tm', 1, 0, 'text', _('Target Moves'), None, cell_style_center),
|
||||
('ib', 1, 0, 'text', _('Initial Balance'),
|
||||
('tm', 1, 0, 'text', _('Target Moves'), None, cell_style_center),
|
||||
('ib', 1, 0, 'text', _('Initial Balance'),
|
||||
None, cell_style_center),
|
||||
('coa', 1, 0, 'text', _('Chart of Account'),
|
||||
None, cell_style_center),
|
||||
|
|
|
@ -80,8 +80,8 @@ class trial_balance_xls(report_xls):
|
|||
('af', 2, 0, 'text', _('Accounts Filter')),
|
||||
('df', 1, 0, 'text', _p.filter_form(data) ==
|
||||
'filter_date' and _('Dates Filter') or _('Periods Filter')),
|
||||
('tm', 2, 0, 'text', _('Target Moves'), None, cell_style_center),
|
||||
('ib', 1, 0, 'text', _('Initial Balance'),
|
||||
('tm', 2, 0, 'text', _('Target Moves'), None, cell_style_center),
|
||||
('ib', 1, 0, 'text', _('Initial Balance'),
|
||||
None, cell_style_center),
|
||||
('coa', 1, 0, 'text', _('Chart of Account'),
|
||||
None, cell_style_center),
|
||||
|
|
Loading…
Reference in New Issue