mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
15 lines
441 B
Python
15 lines
441 B
Python
# Copyright 2024 Alberto Martínez <alberto.martinez@sygel.es>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
sale_default_mandate_contact = fields.Selection(
|
|
string="Default Sale Mandate Contact",
|
|
related="company_id.sale_default_mandate_contact",
|
|
readonly=False,
|
|
)
|