diff --git a/account_banking_sepa/__init__.py b/account_banking_sepa_credit_transfer/__init__.py similarity index 95% rename from account_banking_sepa/__init__.py rename to account_banking_sepa_credit_transfer/__init__.py index 958d2f932..7313e558e 100644 --- a/account_banking_sepa/__init__.py +++ b/account_banking_sepa_credit_transfer/__init__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# SEPA PAIN module for OpenERP +# SEPA Credit Transfer module for OpenERP # Copyright (C) 2010-2012 Akretion (http://www.akretion.com) # @author: Alexis de Lattre # diff --git a/account_banking_sepa/__openerp__.py b/account_banking_sepa_credit_transfer/__openerp__.py similarity index 89% rename from account_banking_sepa/__openerp__.py rename to account_banking_sepa_credit_transfer/__openerp__.py index 598e3b406..fdb258970 100644 --- a/account_banking_sepa/__openerp__.py +++ b/account_banking_sepa_credit_transfer/__openerp__.py @@ -1,6 +1,6 @@ ############################################################################## # -# SEPA PAIN module for OpenERP +# SEPA Credit Transfer module for OpenERP # Copyright (C) 2010-2012 Akretion (http://www.akretion.com) # @author: Alexis de Lattre # @@ -19,7 +19,7 @@ # ############################################################################## { - 'name': 'Account Banking SEPA', + 'name': 'Account Banking SEPA Credit Transfer', 'version': '0.1', 'license': 'AGPL-3', 'author': 'Akretion', @@ -37,7 +37,7 @@ 'description': ''' Module to export payment orders in SEPA XML file format. -SEPA PAIN (PAyment INitiation) is the new european standard for Customer-to-Bank payment instructions. This module implements SCT (SEPA Credit Transfer), more specifically PAIN version 001.001.04. +SEPA PAIN (PAyment INitiation) is the new european standard for Customer-to-Bank payment instructions. This module implements SEPA Credit Transfer (SCT), more specifically PAIN version 001.001.04. It is part of the ISO 20022 standard, available on www.iso20022.org. diff --git a/account_banking_sepa/account_banking_sepa.py b/account_banking_sepa_credit_transfer/account_banking_sepa.py similarity index 98% rename from account_banking_sepa/account_banking_sepa.py rename to account_banking_sepa_credit_transfer/account_banking_sepa.py index b1690d82c..3eb35f34c 100644 --- a/account_banking_sepa/account_banking_sepa.py +++ b/account_banking_sepa_credit_transfer/account_banking_sepa.py @@ -1,6 +1,6 @@ ############################################################################## # -# SEPA SCT module for OpenERP +# SEPA Credit Transfer module for OpenERP # Copyright (C) 2010-2012 Akretion (http://www.akretion.com) # @author: Alexis de Lattre # diff --git a/account_banking_sepa/account_banking_sepa_view.xml b/account_banking_sepa_credit_transfer/account_banking_sepa_view.xml similarity index 100% rename from account_banking_sepa/account_banking_sepa_view.xml rename to account_banking_sepa_credit_transfer/account_banking_sepa_view.xml diff --git a/account_banking_sepa/data/payment_type_sepa_sct.xml b/account_banking_sepa_credit_transfer/data/payment_type_sepa_sct.xml similarity index 100% rename from account_banking_sepa/data/payment_type_sepa_sct.xml rename to account_banking_sepa_credit_transfer/data/payment_type_sepa_sct.xml diff --git a/account_banking_sepa/security/ir.model.access.csv b/account_banking_sepa_credit_transfer/security/ir.model.access.csv similarity index 100% rename from account_banking_sepa/security/ir.model.access.csv rename to account_banking_sepa_credit_transfer/security/ir.model.access.csv diff --git a/account_banking_sepa/wizard/__init__.py b/account_banking_sepa_credit_transfer/wizard/__init__.py similarity index 95% rename from account_banking_sepa/wizard/__init__.py rename to account_banking_sepa_credit_transfer/wizard/__init__.py index c87968b8d..81d95ed28 100644 --- a/account_banking_sepa/wizard/__init__.py +++ b/account_banking_sepa_credit_transfer/wizard/__init__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# SEPA SCT module for OpenERP +# SEPA Credit Transfer module for OpenERP # Copyright (C) 2010-2012 Akretion (http://www.akretion.com) # @author: Alexis de Lattre # diff --git a/account_banking_sepa/wizard/export_sepa.py b/account_banking_sepa_credit_transfer/wizard/export_sepa.py similarity index 99% rename from account_banking_sepa/wizard/export_sepa.py rename to account_banking_sepa_credit_transfer/wizard/export_sepa.py index e5124ceb8..5e3b0d23b 100644 --- a/account_banking_sepa/wizard/export_sepa.py +++ b/account_banking_sepa_credit_transfer/wizard/export_sepa.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# SEPA PAIN module for OpenERP +# SEPA Credit Transfer module for OpenERP # Copyright (C) 2010-2012 Akretion (http://www.akretion.com) # @author: Alexis de Lattre # diff --git a/account_banking_sepa/wizard/export_sepa_view.xml b/account_banking_sepa_credit_transfer/wizard/export_sepa_view.xml similarity index 100% rename from account_banking_sepa/wizard/export_sepa_view.xml rename to account_banking_sepa_credit_transfer/wizard/export_sepa_view.xml diff --git a/account_banking_sepa/wizard/pain_001_001_04_xsd.py b/account_banking_sepa_credit_transfer/wizard/pain_001_001_04_xsd.py similarity index 100% rename from account_banking_sepa/wizard/pain_001_001_04_xsd.py rename to account_banking_sepa_credit_transfer/wizard/pain_001_001_04_xsd.py