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.
20 lines
778 B
20 lines
778 B
# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
from odoo import models, api
|
|
from odoo.http import request
|
|
|
|
|
|
class MailComposer(models.TransientModel):
|
|
|
|
_inherit = 'mail.compose.message'
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
"""Workaround for https://github.com/odoo/odoo/pull/26589"""
|
|
if 'website_id' not in self.env.context:
|
|
website = request and hasattr(request, 'website') and request.website or None
|
|
if not website:
|
|
website = self.env['website'].get_current_website()
|
|
if website:
|
|
self = self.with_context(website_id=website.id)
|
|
return super(MailComposer, self).create(vals)
|