Files
pms/pms_housekeeping/models/hr_employee.py

15 lines
411 B
Python

# Copyright 2020 Jose Luis Algara (Alda Hotels <https://www.aldahotels.es>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class HrEmployee(models.Model):
_inherit = "hr.employee"
pre_assigned_room_ids = fields.Many2many(
comodel_name="pms.room",
string="Pre Assigned Rooms",
help="Rooms pre assigned to this employee",
)