oca-server-auth/odoo-bringout-oca-server-auth-cross_connect_server/cross_connect_server/models/res_users.py
2025-08-29 15:43:06 +02:00

19 lines
617 B
Python

# Copyright 2024 Akretion (http://www.akretion.com).
# @author Florian Mounier <florian.mounier@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class ResUsers(models.Model):
_inherit = "res.users"
cross_connect_client_id = fields.Many2one(
"cross.connect.client",
string="Cross Connect Client",
help="The cross connect client that created this user.",
)
cross_connect_client_user_id = fields.Integer(
string="Cross Connect Client User ID",
help="The user ID on the cross connect client.",
)