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.
11 lines
526 B
11 lines
526 B
# Copyright 2018,2020 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
|
|
# License MIT (https://opensource.org/licenses/MIT).
|
|
# License OPL-1 (https://www.odoo.com/documentation/user/13.0/legal/licenses/licenses.html#odoo-apps) for derivative work.
|
|
from odoo import fields, models
|
|
|
|
|
|
class MailTest(models.Model):
|
|
_inherit = "mail.test.simple"
|
|
|
|
company_id = fields.Many2one("res.company", default=lambda self: self.env.company)
|
|
website_id = fields.Many2one("website", default=lambda self: self.env.website)
|