mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
12 lines
332 B
Python
12 lines
332 B
Python
# Copyright (C) 2022 Open Source Integrators
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class PmsProperty(models.Model):
|
|
_inherit = "pms.property"
|
|
|
|
task_ids = fields.Many2many(
|
|
"project.task", "task_property_rel", "property_id", "task_id", string="Tasks"
|
|
)
|