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.

10 lines
490 B

  1. # Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
  2. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
  3. from odoo import models, fields
  4. class MailTest(models.Model):
  5. _inherit = 'mail.test.simple'
  6. company_id = fields.Many2one('res.company', default=lambda self: self.env['res.company']._company_default_get())
  7. website_id = fields.Many2one('website', default=lambda self: self.env['website'].browse(self.env.context.get('website_id')))