Files
pms/pms_account_move_budget/models/account_move_budget_line.py
2023-11-21 12:50:50 +01:00

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
)