mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
# Copyright 2013-2016 Akretion - Alexis de Lattre
|
|
# Copyright 2014 Tecnativa - Pedro M. Baeza
|
|
# Copyright 2016 Tecnativa - Antonio Espinosa
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from stdnum.eu.at_02 import is_valid
|
|
|
|
from flectra import _, api, fields, models
|
|
from flectra.exceptions import ValidationError
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
sepa_creditor_identifier = fields.Char(
|
|
string="SEPA Creditor Identifier",
|
|
size=35,
|
|
help="Enter the Creditor Identifier that has been attributed to your "
|
|
"company to make SEPA Direct Debits. This identifier is composed "
|
|
"of :\n- your country ISO code (2 letters)\n- a 2-digits "
|
|
"checkum\n- a 3-letters business code\n- a country-specific "
|
|
"identifier",
|
|
)
|
|
|
|
@api.constrains("sepa_creditor_identifier")
|
|
def _check_sepa_creditor_identifier(self):
|
|
for company in self:
|
|
ics = company.sepa_creditor_identifier
|
|
if ics and not is_valid(ics):
|
|
raise ValidationError(
|
|
_("The SEPA Creditor Identifier '%s' is invalid.") % ics
|
|
)
|