mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-17 03:22:03 +00:00
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
# Copyright 2016-2020 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class AccountPaymentMethod(models.Model):
|
|
_inherit = "account.payment.method"
|
|
|
|
pain_version = fields.Selection(
|
|
selection_add=[
|
|
("pain.001.001.02", "pain.001.001.02"),
|
|
("pain.001.001.03", "pain.001.001.03 " "(recommended for credit transfer)"),
|
|
("pain.001.001.04", "pain.001.001.04"),
|
|
("pain.001.001.05", "pain.001.001.05"),
|
|
("pain.001.003.03", "pain.001.003.03 (credit transfer in Germany)"),
|
|
],
|
|
ondelete={
|
|
"pain.001.001.02": "set null",
|
|
"pain.001.001.03": "set null",
|
|
"pain.001.001.04": "set null",
|
|
"pain.001.001.05": "set null",
|
|
"pain.001.003.03": "set null",
|
|
},
|
|
)
|
|
|
|
def get_xsd_file_path(self):
|
|
self.ensure_one()
|
|
if self.pain_version in [
|
|
"pain.001.001.02",
|
|
"pain.001.001.03",
|
|
"pain.001.001.04",
|
|
"pain.001.001.05",
|
|
"pain.001.003.03",
|
|
]:
|
|
path = (
|
|
"account_banking_sepa_credit_transfer/data/%s.xsd" % self.pain_version
|
|
)
|
|
return path
|
|
return super().get_xsd_file_path()
|