Files
pms/pms/models/account_bank_statement.py
2021-05-22 09:50:31 +02:00

17 lines
421 B
Python

from odoo import fields, models
class AccountBankStatement(models.Model):
_inherit = "account.bank.statement"
pms_property_id = fields.Many2one(
string="Property",
help="Properties with access to the element",
copy=False,
comodel_name="pms.property",
)
company_id = fields.Many2one(
string="Company",
help="The company for Account Bank Statement",
)