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.
13 lines
429 B
13 lines
429 B
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import models, fields
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
user_tech_id = fields.Many2one(
|
|
comodel_name="res.users",
|
|
string="Technical User",
|
|
help="This user can be used by process for technical purpose",
|
|
domain="[('company_id', '=', id)]")
|