Fix 2 pep8 errors in account_financial_report_webkit
parent
31f9678ce2
commit
d62ac0a987
|
@ -126,7 +126,8 @@ class PrintJournalWebkit(report_sxw.rml_parse, CommonReportHeaderWebkit):
|
||||||
objects = account_journal_period_obj.browse(self.cursor, self.uid,
|
objects = account_journal_period_obj.browse(self.cursor, self.uid,
|
||||||
new_ids)
|
new_ids)
|
||||||
# Sort by journal and period
|
# Sort by journal and period
|
||||||
objects.sorted(key=lambda a: (a.journal_id.code, a.period_id.date_start))
|
objects.sorted(key=lambda a: (a.journal_id.code,
|
||||||
|
a.period_id.date_start))
|
||||||
move_obj = self.pool.get('account.move')
|
move_obj = self.pool.get('account.move')
|
||||||
moves = {}
|
moves = {}
|
||||||
for journal_period in objects:
|
for journal_period in objects:
|
||||||
|
@ -139,7 +140,7 @@ class PrintJournalWebkit(report_sxw.rml_parse, CommonReportHeaderWebkit):
|
||||||
move_ids = move_obj.search(self.cursor, self.uid, domain_arg,
|
move_ids = move_obj.search(self.cursor, self.uid, domain_arg,
|
||||||
order="name")
|
order="name")
|
||||||
moves[journal_period.id] = move_obj.browse(self.cursor, self.uid,
|
moves[journal_period.id] = move_obj.browse(self.cursor, self.uid,
|
||||||
move_ids)
|
move_ids)
|
||||||
# Sort account move line by account accountant
|
# Sort account move line by account accountant
|
||||||
for move in moves[journal_period.id]:
|
for move in moves[journal_period.id]:
|
||||||
move.line_id.sorted(key=lambda a: (a.date, a.account_id.code))
|
move.line_id.sorted(key=lambda a: (a.date, a.account_id.code))
|
||||||
|
|
Loading…
Reference in New Issue