Files
training-tools/learning_base/models/res_company.py
2023-06-15 11:55:37 +02:00

10 lines
306 B
Python

# Copyright 2018 Nicolas JEUDY
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import api, fields, models, _
class ResCompany(models.Model):
_inherit = 'res.company'
learning_code = fields.Char('Learning Code')
learning_support_email = fields.Char("Support Email")