mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
16 lines
378 B
Python
16 lines
378 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 ProjectTask(models.Model):
|
|
_inherit = "project.task"
|
|
|
|
pms_property_ids = fields.Many2many(
|
|
"pms.property",
|
|
"task_property_rel",
|
|
"task_id",
|
|
"property_id",
|
|
string="Properties",
|
|
)
|