[FIX] account, financial reports: display flat must not print view accounts

bzr revid: qdp-launchpad@openerp.com-20111209163836-3rcq5mkfesg2vhq6
This commit is contained in:
Quentin (OpenERP) 2011-12-09 17:38:36 +01:00
parent ef32f03360
commit 8ba72ec390
1 changed files with 2 additions and 0 deletions

View File

@ -70,6 +70,8 @@ class report_account_common(report_sxw.rml_parse, common_report_header):
account_ids = account_obj.search(self.cr, self.uid, [('user_type','in', [x.id for x in report.account_type_ids])])
if account_ids:
for account in account_obj.browse(self.cr, self.uid, account_ids, context=data['form']['used_context']):
if report.display_detail == 'only_detail' and account.type == 'view':
continue
flag = False
vals = {
'name': account.code + ' ' + account.name,