[FIX] account_export_csv: pylint issues.

pull/597/head
Adrien Peiffer (ACSONE) 2017-05-31 13:58:05 +02:00 committed by David Beal
parent 41ece7cf4c
commit 5808b8a568
2 changed files with 17 additions and 17 deletions

View File

@ -39,4 +39,3 @@ class TestAccountExportCsv(TransactionCase):
'date_end': self.report_date_end 'date_end': self.report_date_end
}) })
report_wizard.action_manual_export_journal_entries() report_wizard.action_manual_export_journal_entries()

View File

@ -111,7 +111,8 @@ class AccountCSVExport(models.TransientModel):
} }
def _get_header_account(self): def _get_header_account(self):
return [_(u'CODE'), return [
_(u'CODE'),
_(u'NAME'), _(u'NAME'),
_(u'DEBIT'), _(u'DEBIT'),
_(u'CREDIT'), _(u'CREDIT'),
@ -165,7 +166,8 @@ class AccountCSVExport(models.TransientModel):
} }
def _get_header_analytic(self): def _get_header_analytic(self):
return [_(u'ANALYTIC CODE'), return [
_(u'ANALYTIC CODE'),
_(u'ANALYTIC NAME'), _(u'ANALYTIC NAME'),
_(u'CODE'), _(u'CODE'),
_(u'ACCOUNT NAME'), _(u'ACCOUNT NAME'),
@ -348,6 +350,5 @@ class AccountCSVExport(models.TransientModel):
j_obj = self.env["account.journal"] j_obj = self.env["account.journal"]
journal_ids = j_obj.search([]).ids journal_ids = j_obj.search([]).ids
rows = itertools.chain((get_header_func(),), rows = itertools.chain((get_header_func(),),
get_rows_func(journal_ids) get_rows_func(journal_ids))
)
return rows return rows