[REF] ir.actions.report.xml: renamed ids to res_ids because those are not the self model IDs.

bzr revid: vmt@openerp.com-20130322162251-j0f3eobpc6oh4il1
This commit is contained in:
Vo Minh Thu 2013-03-22 17:22:51 +01:00
parent b08d7ef6bd
commit 010d8044fe
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ class report_xml(osv.osv):
res[report.id] = False
return res
def render_report(self, cr, uid, ids, name, data, context=None):
def render_report(self, cr, uid, res_ids, name, data, context=None):
"""
Look up a report definition and render the report for the provided IDs.
"""
@ -119,7 +119,7 @@ class report_xml(osv.osv):
else:
raise Exception, "Required report does not exist: %s" % r
return new_report.create(cr, uid, ids, data, context)
return new_report.create(cr, uid, res_ids, data, context)
_name = 'ir.actions.report.xml'
_inherit = 'ir.actions.actions'