[FIX] Reports with m2m field client segmentation fault solved

bzr revid: mra@tinyerp.com-20100429052442-q2ctlrjaa5k9cpvl
This commit is contained in:
mra (Open ERP) 2010-04-29 10:54:42 +05:30
parent c6280e2886
commit d6208f290e
4 changed files with 5 additions and 0 deletions

View File

@ -67,6 +67,7 @@ class account_crossovered_analytic(osv.osv_memory):
'type': 'ir.actions.report.xml',
'report_name': 'account.analytic.account.crossovered.analytic',
'datas': datas,
'nodestroy': True
}
account_crossovered_analytic()

View File

@ -51,6 +51,7 @@ class hr_holidays_summary_dept(osv.osv_memory):
'type': 'ir.actions.report.xml',
'report_name': 'holidays.summary',
'datas': datas,
'nodestroy': True,
}
hr_holidays_summary_dept()

View File

@ -49,6 +49,7 @@ class analytical_timesheet_employees(osv.osv_memory):
'type': 'ir.actions.report.xml',
'report_name': 'hr.analytical.timesheet_users',
'datas': datas,
'nodestroy':True
}
analytical_timesheet_employees()

View File

@ -72,6 +72,8 @@ class account_analytic_profit(osv.osv_memory):
'type': 'ir.actions.report.xml',
'report_name': 'account.analytic.profit',
'datas': datas,
'nodestroy': True
}
account_analytic_profit()