mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
13 lines
292 B
Python
13 lines
292 B
Python
# Copyright 2023 OsoTranquilo
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrEmployeeBase(models.AbstractModel):
|
|
|
|
_inherit = "hr.employee.base"
|
|
|
|
property_ids = fields.Many2many("pms.property", string="Workplaces asigned")
|