[FIX] account: removed unwanted sort() on accounts when computing the lines of a...
authorQuentin (OpenERP) <qdp-launchpad@openerp.com>
Fri, 9 Dec 2011 16:29:42 +0000 (17:29 +0100)
committerQuentin (OpenERP) <qdp-launchpad@openerp.com>
Fri, 9 Dec 2011 16:29:42 +0000 (17:29 +0100)
bzr revid: qdp-launchpad@openerp.com-20111209162942-9h27unjf3jyf3gll

addons/account/report/account_financial_report.py

index 837b3de..7657ec2 100644 (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