11 lines
308 B
Python
11 lines
308 B
Python
# Copyright 2023 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MaintenanceRequest(models.Model):
|
|
_inherit = "maintenance.request"
|
|
|
|
employee_ids = fields.Many2many(comodel_name="hr.employee", string="Employees")
|