mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
17 lines
421 B
Python
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",
|
|
)
|