mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-18 03:11:59 +02:00
12 lines
329 B
Python
12 lines
329 B
Python
# Copyright 2019 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
event_mail_template_id = fields.Many2one(
|
|
comodel_name="event.mail.template",
|
|
string="Mail Template",
|
|
)
|