1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/hr/models/resource.py
2024-12-10 09:04:09 +07:00

12 lines
334 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResourceResource(models.Model):
_inherit = "resource.resource"
user_id = fields.Many2one(copy=False)
employee_id = fields.One2many('hr.employee', 'resource_id', check_company=True)