Browse Source

Pep8

pull/54/head
Guillaume Auger 10 years ago
parent
commit
8312cc196b
  1. 11
      account_chart_report/wizard/account_report_chart_of_account.py

11
account_chart_report/wizard/account_report_chart_of_account.py

@ -27,11 +27,12 @@ class ChartOfAccountsReport(models.TransientModel):
_name = 'account.print.chart.accounts.report' _name = 'account.print.chart.accounts.report'
_description = 'Chart of accounts Report' _description = 'Chart of accounts Report'
chart_account_id = fields.Many2one('account.account',
'Chart of Accounts',
help='Select Charts of Accounts',
required=True,
domain=([('parent_id', '=', False)]))
chart_account_id = fields.Many2one(
'account.account',
'Chart of Accounts',
help='Select Charts of Accounts',
required=True,
domain=([('parent_id', '=', False)]))
@api.multi @api.multi
def print_report(self, data): def print_report(self, data):

Loading…
Cancel
Save