[FIX] website_mail: action_edit_html

Introduced by 9abf7a2010
When clicking on the many2one edition button of the field "email_registration_id"  in the
"event.event" view form, the return action id was not available in the action.

closes #8147
opw:647698
This commit is contained in:
Goffin Simon 2015-08-21 12:15:57 +02:00
parent 99931637d5
commit 256978195b
1 changed files with 6 additions and 1 deletions

View File

@ -10,7 +10,12 @@ class EmailTemplate(osv.Model):
def action_edit_html(self, cr, uid, ids, context=None):
if not len(ids) == 1:
raise ValueError('One and only one ID allowed for this action')
url = '/website_mail/email_designer?model=email.template&res_id=%d&return_action=%d&enable_editor=1' % (ids[0], context['params']['action'])
if not context.get('params'):
action_id = self.pool['ir.model.data'].xmlid_to_res_id(cr, uid, 'mass_mailing.action_email_template_marketing')
else:
action_id = context['params']['action']
url = '/website_mail/email_designer?model=email.template&res_id=%d&return_action=%d&enable_editor=1' % (ids[0], action_id)
return {
'name': _('Edit Template'),
'type': 'ir.actions.act_url',