You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Copyright (C) 2016 Compassion CH (http://www.compassion.ch)
|
|
# Releasing children from poverty in Jesus' name
|
|
# @author: Emanuel Cino <ecino@compassion.ch>
|
|
#
|
|
# The licence is in the file __openerp__.py
|
|
#
|
|
##############################################################################
|
|
|
|
from openerp import models, api
|
|
|
|
|
|
class EmailTemplatePreview(models.TransientModel):
|
|
""" Put the preview inside sendgrid template """
|
|
_inherit = 'email_template.preview'
|
|
|
|
@api.multi
|
|
def on_change_res_id(self, res_id):
|
|
result = super(EmailTemplatePreview, self).on_change_res_id(res_id)
|
|
body_html = result['value']['body_html']
|
|
template_id = self.env.context.get('template_id')
|
|
template = self.env['sendgrid'].browse(template_id)
|
|
sendgrid_template = template.sendgrid_localized_template
|
|
if sendgrid_template:
|
|
body_html = sendgrid_template.html_content.replace(
|
|
'<%body%>', body_html)
|
|
result['value']['body_html'] = body_html
|
|
return result
|