This is how I print a report:
def yoursister(self, cr, uid, ids, context=None):
"""
"""
return {
'type': 'ir.actions.report.xml',
'report_name': 'trescloud_ats_2013_report',
'datas': {
'model': 'sri.ats.2013',
'res_ids': ids
}
}
This method is executed from a wizard. How do I *also* avoid the wizard being closed?