Skip to content
Snippets Groups Projects
Commit 06acbe2d authored by Thibault Delavallée's avatar Thibault Delavallée
Browse files

[FIX] mail: saving a template on a void res_id (sending an email for

example) crashed because of a bad management of void res_ids.
parent 6589a487
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,6 @@ class mail_template(osv.osv):
"""
if context is None:
context = {}
res_ids = filter(None, res_ids) # to avoid browsing [None] below
results = dict.fromkeys(res_ids, u"")
# try to load the template
......@@ -189,14 +188,16 @@ class mail_template(osv.osv):
# prepare template variables
user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
records = self.pool[model].browse(cr, uid, res_ids, context=context) or [None]
records = self.pool[model].browse(cr, uid, filter(None, res_ids), context=context) # filter to avoid browsing [None]
res_to_rec = dict.fromkeys(res_ids, None)
for record in records:
res_to_rec[record.id] = record
variables = {
'format_tz': lambda dt, tz=False, format=False, context=context: format_tz(self.pool, cr, uid, dt, tz, format, context),
'user': user,
'ctx': context, # context kw would clash with mako internals
}
for record in records:
res_id = record.id if record else None
for res_id, record in res_to_rec.iteritems():
variables['object'] = record
try:
render_result = template.render(variables)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment