[FIX] account_export_csv: pylint issues.
parent
41ece7cf4c
commit
5808b8a568
|
@ -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()
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue