[FIX] account: removed unwanted sort() on accounts when computing the lines of a financial report

bzr revid: qdp-launchpad@openerp.com-20111209162942-9h27unjf3jyf3gll
This commit is contained in:
Quentin (OpenERP) 2011-12-09 17:29:42 +01:00
parent 8ec0108649
commit ef32f03360
1 changed files with 0 additions and 1 deletions

View File

@ -68,7 +68,6 @@ class report_account_common(report_sxw.rml_parse, common_report_header):
account_ids = account_obj._get_children_and_consol(self.cr, self.uid, [x.id for x in report.account_ids])
elif report.type == 'account_type' and report.account_type_ids:
account_ids = account_obj.search(self.cr, self.uid, [('user_type','in', [x.id for x in report.account_type_ids])])
account_ids.sort()
if account_ids:
for account in account_obj.browse(self.cr, self.uid, account_ids, context=data['form']['used_context']):
flag = False