mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association.
52 lines
2.4 KiB
Python
52 lines
2.4 KiB
Python
##############################################################################
|
|
#
|
|
# SEPA Credit Transfer module for OpenERP
|
|
# Copyright (C) 2010-2013 Akretion (http://www.akretion.com)
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
{
|
|
'name': 'Account Banking SEPA Credit Transfer',
|
|
'summary': 'Create SEPA XML files for Credit Transfers',
|
|
'version': '0.1',
|
|
'license': 'AGPL-3',
|
|
'author': "Akretion,Odoo Community Association (OCA)",
|
|
'website': 'http://www.akretion.com',
|
|
'category': 'Banking addons',
|
|
'depends': ['account_banking'],
|
|
'init_xml': [],
|
|
'update_xml': [
|
|
'account_banking_sepa_view.xml',
|
|
'wizard/export_sepa_view.xml',
|
|
'data/payment_type_sepa_sct.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'demo_xml': [],
|
|
'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 SEPA Credit Transfer (SCT), more specifically PAIN versions 001.001.02, 001.001.03 and 001.001.04. It is part of the ISO 20022 standard, available on http://www.iso20022.org.
|
|
|
|
The Implementation Guidelines for SEPA Credit Transfer published by the European Payments Council (http://http://www.europeanpaymentscouncil.eu) use PAIN version 001.001.03, so it's probably the version of PAIN that you should try first.
|
|
|
|
This module uses the framework provided by the banking addons, cf https://launchpad.net/banking-addons
|
|
|
|
Please contact Alexis de Lattre from Akretion <alexis.delattre@akretion.com> for any help or question about this module.
|
|
''',
|
|
'active': False,
|
|
'installable': True,
|
|
}
|