mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-20 08:51:59 +02:00
Initial commit: OCA Mrp packages (117 packages)
This commit is contained in:
commit
277e84fd7a
4403 changed files with 395154 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
# Copyright 2016 Tecnativa - Sergio Teruel <sergio.teruel@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = "res.config.settings"
|
||||
|
||||
event_mail_template_id = fields.Many2one(
|
||||
related="company_id.event_mail_template_id",
|
||||
comodel_name="event.mail.template",
|
||||
string="Mail Template",
|
||||
readonly=False,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue