mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
# © 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import models, fields, api
|
|
|
|
|
|
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)'),
|
|
])
|
|
|
|
@api.multi
|
|
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(AccountPaymentMethod, self).get_xsd_file_path()
|