mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
10 lines
281 B
Python
10 lines
281 B
Python
# Copyright (C) 2022 Casai (https://www.casai.com)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class Project(models.Model):
|
|
_inherit = "project.project"
|
|
|
|
property_id = fields.Many2one("pms.property", string="Property")
|