mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
13 lines
356 B
Python
13 lines
356 B
Python
# Copyright 2023 Comunitea S.L. (http://www.comunitea.com)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountMoveBudgetLine(models.Model):
|
|
_inherit = "account.move.budget.line"
|
|
|
|
pms_property_id = fields.Many2one(
|
|
"pms.property", string="Hotel", required=False, index=True
|
|
)
|