mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
15 lines
411 B
Python
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",
|
|
)
|