mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
22 lines
622 B
Python
22 lines
622 B
Python
# Copyright 2009-2020 Noviat
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class PaymentAcquirer(models.Model):
|
|
_inherit = "payment.acquirer"
|
|
_check_pms_properties_auto = True
|
|
|
|
pms_property_ids = fields.Many2many(
|
|
string="Properties",
|
|
help="Properties with access to the element;"
|
|
" if not set, all properties can access",
|
|
required=False,
|
|
comodel_name="pms.property",
|
|
relation="pms_acquirer_property_rel",
|
|
column1="acquirer_id",
|
|
column2="property_id",
|
|
check_pms_properties=True,
|
|
)
|