oca-ocb-core/odoo-bringout-oca-ocb-mail/mail/models/mail_template.py
Ernad Husremovic 2d3ee4855a 19.0 vanilla
2026-03-09 09:30:27 +01:00

825 lines
37 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import base64
import logging
from ast import literal_eval
from odoo import _, api, fields, models, tools
from odoo.exceptions import ValidationError, UserError
from odoo.fields import Domain
from odoo.tools import is_html_empty
from odoo.tools.safe_eval import safe_eval, time
_logger = logging.getLogger(__name__)
class MailTemplate(models.Model):
"Templates for sending email"
_name = 'mail.template'
_inherit = ['mail.render.mixin', 'template.reset.mixin']
_description = 'Email Templates'
_order = 'user_id, name, id'
_unrestricted_rendering = True
@api.model
def default_get(self, fields):
res = super(MailTemplate, self).default_get(fields)
if res.get('model'):
res['model_id'] = self.env['ir.model']._get(res.pop('model')).id
return res
def _get_non_abstract_models_domain(self):
registry = self.env.registry
abstract_models = [model for model in registry if registry[model]._abstract]
return [('model', 'not in', abstract_models)]
# description
name = fields.Char('Name', translate=True)
description = fields.Text(
'Template Description', translate=True,
help="This field is used for internal description of the template's usage.")
active = fields.Boolean(default=True)
template_category = fields.Selection(
[('base_template', 'Base Template'),
('hidden_template', 'Hidden Template'),
('custom_template', 'Custom Template')],
compute="_compute_template_category", search="_search_template_category")
model_id = fields.Many2one('ir.model', 'Applies to', ondelete='cascade', domain=_get_non_abstract_models_domain)
model = fields.Char('Related Document Model', related='model_id.model', index=True, store=True, readonly=True)
subject = fields.Char('Subject', translate=True, prefetch=True, help="Subject (placeholders may be used here)")
email_from = fields.Char('Send From',
help="Sender address (placeholders may be used here). If not set, the default "
"value will be the author's email alias if configured, or email address.")
user_id = fields.Many2one('res.users', string='Owner', domain="[('share', '=', False)]")
# recipients
use_default_to = fields.Boolean(
'Default Recipients',
default=True,
help="Default recipients of the record:\n"
"- partner (using id on a partner or the partner_id field) OR\n"
"- email (using email_from or email field)")
email_to = fields.Char('To (Emails)', help="Comma-separated recipient addresses (placeholders may be used here)")
partner_to = fields.Char('To (Partners)',
help="Comma-separated ids of recipient partners (placeholders may be used here)")
email_cc = fields.Char('Cc', help="Carbon copy recipients (placeholders may be used here)")
reply_to = fields.Char('Reply To', help="Email address to which replies will be redirected when sending emails in mass; only used when the reply is not logged in the original discussion thread.")
# content
body_html = fields.Html(
'Body', render_engine='qweb', render_options={'post_process': True},
prefetch=True, translate=True, sanitize='email_outgoing',
)
attachment_ids = fields.Many2many(
'ir.attachment', 'email_template_attachment_rel',
'email_template_id', 'attachment_id',
string='Attachments',
bypass_search_access=True,
)
report_template_ids = fields.Many2many(
'ir.actions.report', relation='mail_template_ir_actions_report_rel',
column1='mail_template_id',
column2='ir_actions_report_id',
string='Dynamic Reports',
domain="[('model', '=', model)]")
email_layout_xmlid = fields.Char('Email Notification Layout', copy=False)
# options
mail_server_id = fields.Many2one('ir.mail_server', 'Outgoing Mail Server', readonly=False, index='btree_not_null',
help="Optional preferred server for outgoing mails. If not set, the highest "
"priority one will be used.")
scheduled_date = fields.Char('Scheduled Date', help="If set, the queue manager will send the email after the date. If not set, the email will be send as soon as possible. You can use dynamic expression.")
auto_delete = fields.Boolean(
'Auto Delete', default=True,
help="This option permanently removes any track of email after it's been sent, including from the Technical menu in the Settings, in order to preserve storage space of your Odoo database.")
# contextual action
ref_ir_act_window = fields.Many2one('ir.actions.act_window', 'Sidebar action', readonly=True, copy=False,
help="Sidebar action to make this template available on records "
"of the related document model")
# access
can_write = fields.Boolean(compute='_compute_can_write',
help='The current user can edit the template.')
is_template_editor = fields.Boolean(compute="_compute_is_template_editor")
# view display
has_dynamic_reports = fields.Boolean(compute='_compute_has_dynamic_reports')
has_mail_server = fields.Boolean(compute='_compute_has_mail_server')
@api.depends('model')
def _compute_has_dynamic_reports(self):
number_of_dynamic_reports_per_model = dict(
self.env['ir.actions.report'].sudo()._read_group(
domain=[('model', 'in', self.mapped('model'))],
groupby=['model'],
aggregates=['id:count'],
having=[('__count', '>', 0)]))
for template in self:
template.has_dynamic_reports = template.model in number_of_dynamic_reports_per_model
def _compute_has_mail_server(self):
has_mail_server = bool(self.env['ir.mail_server'].sudo().search([], limit=1))
for template in self:
template.has_mail_server = has_mail_server
# Overrides of mail.render.mixin
@api.depends('model')
def _compute_render_model(self):
for template in self:
template.render_model = template.model
@api.depends_context('uid')
def _compute_can_write(self):
writable_templates = self._filtered_access('write')
for template in self:
template.can_write = template in writable_templates
@api.depends_context('uid')
def _compute_is_template_editor(self):
self.is_template_editor = self.env.user.has_group('mail.group_mail_template_editor')
@api.depends('active', 'description')
def _compute_template_category(self):
""" Base templates (or master templates) are active templates having
a description and an XML ID. User defined templates (no xml id),
templates without description or archived templates are not
base templates anymore. """
deactivated = self.filtered(lambda template: not template.active)
if deactivated:
deactivated.template_category = 'hidden_template'
remaining = self - deactivated
if remaining:
template_external_ids = remaining.get_external_id()
for template in remaining:
if bool(template_external_ids[template.id]) and template.description:
template.template_category = 'base_template'
elif bool(template_external_ids[template.id]):
template.template_category = 'hidden_template'
else:
template.template_category = 'custom_template'
@api.model
def _search_template_category(self, operator, value):
if operator != 'in':
return NotImplemented
templates_with_xmlid = self.env['ir.model.data'].sudo()._search([
('model', '=', 'mail.template'),
('module', '!=', '__export__')
]).subselect('res_id')
domain = Domain.FALSE
if 'hidden_template' in value:
domain |= Domain(['|', ('active', '=', False), '&', ('description', '=', False), ('id', 'in', templates_with_xmlid)])
if 'base_template' in value:
domain |= Domain([('active', '=', True), ('description', '!=', False), ('id', 'in', templates_with_xmlid)])
if 'custom_template' in value:
domain |= Domain([('active', '=', True), ('template_category', 'not in', ['base_template', 'hidden_template'])])
return domain
@api.onchange("model")
def _onchange_model(self):
for template in self.filtered("model"):
target = self.env[template.model]
if hasattr(target, "_mail_template_default_values"):
upd_values = target._mail_template_default_values()
template.update(upd_values)
# ------------------------------------------------------------
# CRUD
# ------------------------------------------------------------
def _fix_attachment_ownership(self):
for record in self:
record.attachment_ids.write({'res_model': record._name, 'res_id': record.id})
return self
def _check_abstract_models(self, vals_list):
model_names = self.sudo().env['ir.model'].browse(filter(None, (
vals.get('model_id') for vals in vals_list
))).mapped('model')
for model in model_names:
if self.env[model]._abstract:
raise ValidationError(_('You may not define a template on an abstract model: %s', model))
def _check_can_be_rendered(self, fnames=None, render_options=None):
dynamic_fnames = self._get_dynamic_field_names()
for template in self:
model = template.sudo().model_id.model
if not model:
return
record = template.env[model].search([], limit=1)
if not record:
return
fnames = fnames & dynamic_fnames if fnames else dynamic_fnames
for fname in fnames:
try:
template._render_field(fname, record.ids, options=render_options)
except Exception as e:
_logger.exception("Error while checking if template can be rendered for field %s", fname)
raise ValidationError(
_("Oops! We couldn't save your template due to an issue with this value: %(template_txt)s. Correct it and try again.",
template_txt=template[fname])
) from e
def _get_dynamic_field_names(self):
return {
'body_html',
'email_cc',
'email_from',
'email_to',
'lang',
'partner_to',
'reply_to',
'scheduled_date',
'subject',
}
@api.model_create_multi
def create(self, vals_list):
self._check_abstract_models(vals_list)
records = super().create(vals_list)
records._check_can_be_rendered(fnames=None)
records._fix_attachment_ownership()
return records
def write(self, vals):
self._check_abstract_models([vals])
super().write(vals)
self._check_can_be_rendered(fnames=vals.keys() if {'model', 'model_id'}.isdisjoint(vals.keys()) else None)
self._fix_attachment_ownership()
return True
def unlink(self):
self.unlink_action()
return super(MailTemplate, self).unlink()
def copy_data(self, default=None):
vals_list = super().copy_data(default=default)
for vals, template in zip(vals_list, self):
if 'name' not in (default or {}) and vals.get('name') == template.name:
vals['name'] = self.env._("%s (copy)", template.name)
return vals_list
def copy(self, default=None):
default = default or {}
copy_attachments = 'attachment_ids' not in default
if copy_attachments:
default['attachment_ids'] = False
copies = super().copy(default=default)
if copy_attachments:
for copy, original in zip(copies, self):
# copy attachments, to avoid ownership / ACLs issue
# anyway filestore should keep a single reference to content
if original.attachment_ids:
copy.write({
'attachment_ids': [
(4, att_copy.id) for att_copy in (
attachment.copy(default={'res_id': copy.id, 'res_model': original._name}) for attachment in original.attachment_ids
)
]
})
return copies
def unlink_action(self):
for template in self:
if template.ref_ir_act_window:
template.ref_ir_act_window.unlink()
return True
def create_action(self):
ActWindow = self.env['ir.actions.act_window']
view = self.env.ref('mail.email_compose_message_wizard_form')
for template in self:
context = {
'default_composition_mode': 'mass_mail',
'default_model': template.model,
'default_template_id' : template.id,
}
button_name = _('Send Mail (%s)', template.name)
action = ActWindow.create({
'name': button_name,
'type': 'ir.actions.act_window',
'res_model': 'mail.compose.message',
'context': repr(context),
'view_mode': 'form,list',
'view_id': view.id,
'target': 'new',
'binding_model_id': template.model_id.id,
})
template.write({'ref_ir_act_window': action.id})
return True
def action_open_mail_preview(self):
action = self.env.ref('mail.mail_template_preview_action')._get_action_dict()
action.update({'name': _('Template Preview: "%(template_name)s"', template_name=self.name)})
return action
# ------------------------------------------------------------
# MESSAGE/EMAIL VALUES GENERATION
# ------------------------------------------------------------
def _generate_template_attachments(self, res_ids, render_fields,
render_results=None):
""" Render attachments of template 'self', returning values for records
given by 'res_ids'. Note that ``report_template_ids`` returns values for
'attachments', as we have a list of tuple (report_name, base64 value)
for those reports. It is considered as being the job of callers to
transform those attachments into valid ``ir.attachment`` records.
:param list res_ids: list of record IDs on which template is rendered;
:param list render_fields: list of fields to render on template which
are specific to attachments, e.g. attachment_ids or report_template_ids;
:param dict render_results: res_ids-based dictionary of render values.
For each res_id, a dict of values based on render_fields is given
:return: updated (or new) render_results;
"""
self.ensure_one()
if render_results is None:
render_results = {}
# generating reports is done on a per-record basis, better ensure cache
# is filled up to avoid rendering and browsing in a loop
if res_ids and 'report_template_ids' in render_fields and self.report_template_ids:
self.env[self.model].browse(res_ids)
for res_id in res_ids:
values = render_results.setdefault(res_id, {})
# link template attachments directly
if 'attachment_ids' in render_fields:
values['attachment_ids'] = self.attachment_ids.ids
# generate attachments (reports)
if 'report_template_ids' in render_fields and self.report_template_ids:
for report in self.report_template_ids:
# generate content
if report.report_type in ['qweb-html', 'qweb-pdf']:
report_content, report_format = self.env['ir.actions.report']._render_qweb_pdf(report, [res_id])
else:
render_res = self.env['ir.actions.report']._render(report, [res_id])
if not render_res:
raise UserError(_('Unsupported report type %s found.', report.report_type))
report_content, report_format = render_res
report_content = base64.b64encode(report_content)
# generate name
if report.print_report_name:
report_name = safe_eval(
report.print_report_name,
{
'object': self.env[self.model].browse(res_id),
'time': time,
}
)
else:
report_name = _('Report')
extension = "." + report_format
if not report_name.endswith(extension):
report_name += extension
values.setdefault('attachments', []).append((report_name, report_content))
elif 'report_template_ids' in render_fields:
values['attachments'] = []
# hook for attachments-specific computation, used currently only for accounting
if hasattr(self.env[self.model], '_process_attachments_for_template_post'):
records_attachments = self.env[self.model].browse(res_ids)._process_attachments_for_template_post(self)
for res_id, additional_attachments in records_attachments.items():
if not additional_attachments:
continue
if additional_attachments.get('attachment_ids'):
render_results[res_id].setdefault('attachment_ids', []).extend(additional_attachments['attachment_ids'])
if additional_attachments.get('attachments'):
render_results[res_id].setdefault('attachments', []).extend(additional_attachments['attachments'])
return render_results
def _generate_template_recipients(self, res_ids, render_fields,
allow_suggested=False,
find_or_create_partners=False,
render_results=None):
""" Render recipients of the template 'self', returning values for records
given by 'res_ids'. Default values can be generated instead of the template
values if requested by template (see 'use_default_to' field). Email fields
('email_cc', 'email_to') are transformed into partners if requested
(finding or creating partners). 'partner_to' field is transformed into
'partner_ids' field.
Note: for performance reason, information from records are transferred to
created partners no matter the company. For example, if we have a record of
company A and one of B with the same email and no related partner, a partner
will be created with company A or B but populated with information from the 2
records. So some info might be leaked from one company to the other through
the partner.
:param list res_ids: list of record IDs on which template is rendered;
:param list render_fields: list of fields to render on template which
are specific to recipients, e.g. email_cc, email_to, partner_to);
:param boolean allow_suggested: when computing default recipients,
include suggested recipients in addition to minimal defaults;
:param boolean find_or_create_partners: transform emails into partners
(calling ``find_or_create`` on partner model);
:param dict render_results: res_ids-based dictionary of render values.
For each res_id, a dict of values based on render_fields is given;
:return: updated (or new) render_results. It holds a 'partner_ids' key
holding partners given by ``_message_get_default_recipients`` and/or
generated based on 'partner_to'. If ``find_or_create_partners`` is
False emails are present, otherwise they are included as partners
contained in ``partner_ids``.
"""
self.ensure_one()
if render_results is None:
render_results = {}
Model = self.env[self.model].with_prefetch(res_ids)
# if using default recipients -> ``_message_get_default_recipients`` gives
# values for email_to, email_cc and partner_ids; if using suggested recipients
# -> ``_message_get_suggested_recipients_batch`` gives a list of potential
# recipients (TODO: decide which API to keep)
if self.use_default_to and self.model:
if allow_suggested:
suggested_recipients = Model.browse(res_ids)._message_get_suggested_recipients_batch(
reply_discussion=True, no_create=not find_or_create_partners,
)
for res_id, suggested_list in suggested_recipients.items():
pids = [r['partner_id'] for r in suggested_list if r['partner_id']]
email_to_lst = [
tools.mail.formataddr(
(r['name'] or '', r['email'] or '')
) for r in suggested_list if not r['partner_id']
]
render_results.setdefault(res_id, {})
render_results[res_id]['partner_ids'] = pids
render_results[res_id]['email_to'] = ', '.join(email_to_lst)
else:
default_recipients = Model.browse(res_ids)._message_get_default_recipients()
for res_id, recipients in default_recipients.items():
render_results.setdefault(res_id, {}).update(recipients)
# render fields dynamically which generates recipients
else:
for field in set(render_fields) & {'email_cc', 'email_to', 'partner_to'}:
generated_field_values = self._render_field(field, res_ids)
for res_id in res_ids:
render_results.setdefault(res_id, {})[field] = generated_field_values[res_id]
# create partners from emails if asked to
if find_or_create_partners:
email_to_res_ids = {}
records_emails = {}
for record in Model.browse(res_ids):
record_values = render_results.setdefault(record.id, {})
mails = tools.email_split(record_values.pop('email_to', '')) + \
tools.email_split(record_values.pop('email_cc', ''))
records_emails[record] = mails
for mail in mails:
email_to_res_ids.setdefault(mail, []).append(record.id)
if hasattr(Model, '_partner_find_from_emails'):
records_partners = Model.browse(res_ids)._partner_find_from_emails(records_emails)
else:
records_partners = self.env['mail.thread']._partner_find_from_emails(records_emails)
for res_id, partners in records_partners.items():
render_results[res_id].setdefault('partner_ids', []).extend(partners.ids)
# update 'partner_to' rendered value to 'partner_ids'
all_partner_to = {
pid
for record_values in render_results.values()
for pid in self._parse_partner_to(record_values.get('partner_to', ''))
}
existing_pids = set()
if all_partner_to:
existing_pids = set(self.env['res.partner'].sudo().browse(list(all_partner_to)).exists().ids)
for record_values in render_results.values():
partner_to = record_values.pop('partner_to', '')
if partner_to:
tpl_partner_ids = set(self._parse_partner_to(partner_to)) & existing_pids
record_values.setdefault('partner_ids', []).extend(tpl_partner_ids)
return render_results
def _generate_template_scheduled_date(self, res_ids, render_results=None):
""" Render scheduled date based on template 'self'. Specific parsing is
done to ensure value matches ORM expected value: UTC but without
timezone set in value.
:param list res_ids: list of record IDs on which template is rendered;
:param dict render_results: res_ids-based dictionary of render values.
For each res_id, a dict of values based on render_fields is given;
:return: updated (or new) render_results;
"""
self.ensure_one()
if render_results is None:
render_results = {}
scheduled_dates = self._render_field('scheduled_date', res_ids)
for res_id in res_ids:
scheduled_date = self._process_scheduled_date(scheduled_dates.get(res_id))
render_results.setdefault(res_id, {})['scheduled_date'] = scheduled_date
return render_results
def _generate_template_static_values(self, res_ids, render_fields, render_results=None):
""" Return values based on template 'self'. Those are not rendered nor
dynamic, just static values used for configuration of emails.
:param list res_ids: list of record IDs on which template is rendered;
:param list render_fields: list of fields to render, currently limited
to a subset (i.e. auto_delete, mail_server_id, model, res_id);
:param dict render_results: res_ids-based dictionary of render values.
For each res_id, a dict of values based on render_fields is given;
:return: updated (or new) render_results;
"""
self.ensure_one()
if render_results is None:
render_results = {}
for res_id in res_ids:
values = render_results.setdefault(res_id, {})
# technical settings
if 'auto_delete' in render_fields:
values['auto_delete'] = self.auto_delete
if 'email_layout_xmlid' in render_fields:
values['email_layout_xmlid'] = self.email_layout_xmlid
if 'mail_server_id' in render_fields:
values['mail_server_id'] = self.mail_server_id.id
if 'model' in render_fields:
values['model'] = self.model
if 'res_id' in render_fields:
values['res_id'] = res_id or False
return render_results
def _generate_template(self, res_ids, render_fields,
recipients_allow_suggested=False,
find_or_create_partners=False):
""" Render values from template 'self' on records given by 'res_ids'.
Those values are generally used to create a mail.mail or a mail.message.
Model of records is the one defined on template.
:param list res_ids: list of record IDs on which template is rendered;
:param list render_fields: list of fields to render on template;
# recipients generation
:param boolean recipients_allow_suggested: when computing default
recipients, include suggested recipients in addition to minimal
defaults;
:param boolean find_or_create_partners: transform emails into partners
(see ``_generate_template_recipients``);
:returns: a dict of (res_ids, values) where values contains all rendered
fields asked in ``render_fields``. Asking for attachments adds an
'attachments' key using the format [(report_name, data)] where data
is base64 encoded. Asking for recipients adds a 'partner_ids' key.
Note that 2many fields contain a list of IDs, not commands.
"""
self.ensure_one()
render_fields_set = set(render_fields)
fields_specific = {
'attachment_ids', # attachments
'email_cc', # recipients
'email_to', # recipients
'partner_to', # recipients
'report_template_ids', # attachments
'scheduled_date', # specific
# not rendered (static)
'auto_delete',
'email_layout_xmlid',
'mail_server_id',
'model',
'res_id',
}
render_results = {}
for (template, template_res_ids) in self._classify_per_lang(res_ids).values():
# render fields not rendered by sub methods
fields_torender = {
field for field in render_fields_set
if field not in fields_specific
}
for field in fields_torender:
generated_field_values = template._render_field(
field, template_res_ids
)
for res_id, field_value in generated_field_values.items():
render_results.setdefault(res_id, {})[field] = field_value
# render recipients
if render_fields_set & {'email_cc', 'email_to', 'partner_to'}:
template._generate_template_recipients(
template_res_ids, render_fields_set,
render_results=render_results,
allow_suggested=recipients_allow_suggested,
find_or_create_partners=find_or_create_partners
)
# render scheduled_date
if 'scheduled_date' in render_fields_set:
template._generate_template_scheduled_date(
template_res_ids,
render_results=render_results
)
# add values static for all res_ids
template._generate_template_static_values(
template_res_ids,
render_fields_set,
render_results=render_results
)
# generate attachments if requested
if render_fields_set & {'attachment_ids', 'report_template_ids'}:
template._generate_template_attachments(
template_res_ids,
render_fields_set,
render_results=render_results
)
return render_results
@classmethod
def _parse_partner_to(cls, partner_to):
try:
partner_to = literal_eval(partner_to or '[]')
except (ValueError, SyntaxError):
partner_to = partner_to.split(',')
if not isinstance(partner_to, (list, tuple)):
partner_to = [partner_to]
return [
int(pid.strip()) if isinstance(pid, str) else int(pid) for pid in partner_to
if (isinstance(pid, str) and pid.strip().isdigit()) or (pid and not isinstance(pid, str))
]
# ------------------------------------------------------------
# EMAIL
# ------------------------------------------------------------
def _send_check_access(self, res_ids):
records = self.env[self.model].browse(res_ids)
records.check_access('read')
def send_mail(self, res_id, force_send=False, raise_exception=False, email_values=None,
email_layout_xmlid=False):
""" Generates a new mail.mail. Template is rendered on record given by
res_id and model coming from template.
:param int res_id: id of the record to render the template
:param bool force_send: send email immediately; otherwise use the mail
queue (recommended);
:param dict email_values: update generated mail with those values to further
customize the mail;
:param str email_layout_xmlid: optional notification layout to encapsulate the
generated email;
:returns: id of the mail.mail that was created """
# Grant access to send_mail only if access to related document
self.ensure_one()
return self.send_mail_batch(
[res_id],
force_send=force_send,
raise_exception=raise_exception,
email_values=email_values,
email_layout_xmlid=email_layout_xmlid
)[0].id # TDE CLEANME: return mail + api.returns ?
def send_mail_batch(self, res_ids, force_send=False, raise_exception=False, email_values=None,
email_layout_xmlid=False):
""" Generates new mail.mails. Batch version of 'send_mail'.'
:param list res_ids: IDs of modelrecords on which template will be rendered
:returns: newly created mail.mail
"""
# Grant access to send_mail only if access to related document
self.ensure_one()
self._send_check_access(res_ids)
sending_email_layout_xmlid = email_layout_xmlid or self.email_layout_xmlid
mails_sudo = self.env['mail.mail'].sudo()
batch_size = int(
self.env['ir.config_parameter'].sudo().get_param('mail.batch_size')
) or 50 # be sure to not have 0, as otherwise no iteration is done
RecordModel = self.env[self.model].with_prefetch(res_ids)
record_ir_model = self.env['ir.model']._get(self.model)
for res_ids_chunk in tools.split_every(batch_size, res_ids):
res_ids_values = self._generate_template(
res_ids_chunk,
('attachment_ids',
'auto_delete',
'body_html',
'email_cc',
'email_from',
'email_to',
'mail_server_id',
'model',
'partner_to',
'reply_to',
'report_template_ids',
'res_id',
'scheduled_date',
'subject',
)
)
values_list = [res_ids_values[res_id] for res_id in res_ids_chunk]
# get record in batch to use the prefetch
records = RecordModel.browse(res_ids_chunk)
attachments_list = []
# lang and company is used for rendering layout
res_ids_langs, res_ids_companies = {}, {}
if sending_email_layout_xmlid:
if self.lang:
res_ids_langs = self._render_lang(res_ids_chunk)
res_ids_companies = records._mail_get_companies(default=self.env.company)
for record in records:
values = res_ids_values[record.id]
values['recipient_ids'] = [(4, pid) for pid in (values.get('partner_ids') or [])]
values['attachment_ids'] = [(4, aid) for aid in (values.get('attachment_ids') or [])]
values.update(email_values or {})
# delegate attachments after creation due to ACL check
attachments_list.append(values.pop('attachments', []))
# add a protection against void email_from
if 'email_from' in values and not values.get('email_from'):
values.pop('email_from')
# encapsulate body
if not sending_email_layout_xmlid:
values['body'] = values['body_html']
continue
lang = res_ids_langs.get(record.id) or self.env.lang
company = res_ids_companies.get(record.id) or self.env.company
model_lang = record_ir_model.with_context(lang=lang)
self_lang = self.with_context(lang=lang)
record_lang = record.with_context(lang=lang)
values['body_html'] = self_lang._render_encapsulate(
sending_email_layout_xmlid,
values['body_html'],
add_context={
'company': company,
'model_description': model_lang.display_name,
},
context_record=record_lang,
)
values['body'] = values['body_html']
mails = self.env['mail.mail'].sudo().create(values_list)
# manage attachments
for mail, attachments in zip(mails, attachments_list):
if attachments:
attachments_values = [
(0, 0, {
'name': name,
'datas': datas,
'type': 'binary',
'res_model': 'mail.message',
'res_id': mail.mail_message_id.id,
})
for (name, datas) in attachments
]
mail.with_context(default_type=None).write({'attachment_ids': attachments_values})
mails_sudo += mails
if force_send:
mails_sudo.send(raise_exception=raise_exception)
return mails_sudo
# ----------------------------------------
# MAIL RENDER INTERNALS
# ----------------------------------------
def _has_unsafe_expression_template_qweb(self, source, model, fname=None):
if self._expression_is_default(source, model, fname):
return False
return super()._has_unsafe_expression_template_qweb(source, model, fname=fname)
def _has_unsafe_expression_template_inline_template(self, source, model, fname=None):
if self._expression_is_default(source, model, fname):
return False
return super()._has_unsafe_expression_template_inline_template(source, model, fname=fname)
def _expression_is_default(self, source, model, fname):
if not fname or not model:
return False
Model = self.env[model]
model_defaults = hasattr(Model, '_mail_template_default_values') and Model._mail_template_default_values() or {}
return source == model_defaults.get(fname)