[IMP] account.financial.report account_type mode

bzr revid: al@openerp.com-20110921235324-fgo9v1g3omppe3h1
This commit is contained in:
Antony Lesuisse 2011-09-22 01:53:24 +02:00
parent b117f5dc75
commit f18c91c9a1
1 changed files with 6 additions and 0 deletions

View File

@ -63,8 +63,14 @@ class report_account_common(report_sxw.rml_parse, common_report_header):
if data['form']['enable_filter']:
vals['balance_cmp'] = self.pool.get('account.financial.report').browse(self.cr, self.uid, report.id, context=data['form']['comparison_context']).balance
lines.append(vals)
account_ids = []
if report.type == 'accounts' and report.display_detail and report.account_ids:
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:
print "accout type"
account_ids = account_obj.search(self.cr, self.uid, [('user_type','in', [x.id for x in report.account_type_ids])])
print account_ids
if account_ids:
for account in account_obj.browse(self.cr, self.uid, account_ids, context=data['form']['used_context']):
if account.type != 'view':
flag = False