hr/models/resource.py
Данил Воробьев 1ddfcf9f6f initial commit
2024-05-03 09:32:20 +00: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)