From b4228246df06cedc80f546d136b69afff6a9acde Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 20 May 2013 22:49:45 +0200 Subject: [PATCH] The document "SEPA CREDIT TRANSFER SCHEME CUSTOMER-TO-BANK IMPLEMENTATION GUIDELINES" v6.0 of the European Payment Council says only SLEV is allowed for "Charge Bearer". So we set this value as default. --- account_banking_sepa_credit_transfer/wizard/export_sepa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_banking_sepa_credit_transfer/wizard/export_sepa.py b/account_banking_sepa_credit_transfer/wizard/export_sepa.py index 13804c9bc..63ec1558d 100644 --- a/account_banking_sepa_credit_transfer/wizard/export_sepa.py +++ b/account_banking_sepa_credit_transfer/wizard/export_sepa.py @@ -68,7 +68,7 @@ class banking_export_sepa_wizard(osv.osv_memory): } _defaults = { - 'charge_bearer': 'SHAR', + 'charge_bearer': 'SLEV', 'state': 'create', }