mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 05:32:05 +00:00
13 lines
359 B
Python
13 lines
359 B
Python
# Copyright 2016 Akretion - Alexis de Lattre
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
sepa_creditor_identifier = fields.Char(
|
|
related="company_id.sepa_creditor_identifier", readonly=False
|
|
)
|