~pedro-q/account-payment/account-payment-sepa-7.0

« back to all changes in this revision

Viewing changes to account_payment_sepa_direct_debit/__openerp__.py

  • Committer: Ignacio Ibeas - Acysos S.L.
  • Date: 2014-01-25 13:30:35 UTC
  • Revision ID: ignacio@acysos.com-20140125133035-46kipms7z97u825v
[ADD] SEPA modules ported from Banking Addons to Account Payment Extension

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
#    SEPA Direct Debit module for OpenERP
 
4
#    Copyright (C) 2013 Akretion (http://www.akretion.com)
 
5
#    @author: Alexis de Lattre <alexis.delattre@akretion.com>
 
6
#    Copyright (C) 2014 Acysos S.L. (<http://acysos.com>).
 
7
#    @author: Ignacio Ibeas <ignacio@acysos.com>
 
8
#
 
9
#    This program is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU Affero General Public License as
 
11
#    published by the Free Software Foundation, either version 3 of the
 
12
#    License, or (at your option) any later version.
 
13
#
 
14
#    This program is distributed in the hope that it will be useful,
 
15
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
#    GNU Affero General Public License for more details.
 
18
#
 
19
#    You should have received a copy of the GNU Affero General Public License
 
20
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
#
 
22
##############################################################################
 
23
{
 
24
    'name': 'Account Payment SEPA Direct Debit',
 
25
    'summary': 'Create SEPA files for Direct Debit',
 
26
    'version': '0.1',
 
27
    'license': 'AGPL-3',
 
28
    'author': 'Akretion',
 
29
    'website': 'http://www.akretion.com',
 
30
    'category': 'Banking addons',
 
31
    'depends': ['account_payment_direct_debit', 'account_payment_pain_base'],
 
32
    'external_dependencies': {
 
33
        'python': ['unidecode', 'lxml'],
 
34
        },
 
35
    'data': [
 
36
        'security/original_mandate_required_security.xml',
 
37
        'account_banking_sdd_view.xml',
 
38
        'sdd_mandate_view.xml',
 
39
        'res_partner_bank_view.xml',
 
40
        'account_payment_view.xml',
 
41
        'company_view.xml',
 
42
        'mandate_expire_cron.xml',
 
43
        'account_invoice_view.xml',
 
44
        'wizard/export_sdd_view.xml',
 
45
        'data/payment_type_sdd.xml',
 
46
        'data/mandate_reference_sequence.xml',
 
47
        'security/ir.model.access.csv',
 
48
    ],
 
49
    'description': '''
 
50
Module to export direct debit payment orders in SEPA XML file format.
 
51
 
 
52
SEPA PAIN (PAyment INitiation) is the new european standard for Customer-to-Bank payment instructions. This module implements SEPA Direct Debit (SDD), more specifically PAIN versions 008.001.02, 008.001.03 and 008.001.04. It is part of the ISO 20022 standard, available on http://www.iso20022.org.
 
53
 
 
54
The Implementation Guidelines for SEPA Direct Debit published by the European Payments Council (http://http://www.europeanpaymentscouncil.eu) use PAIN version 008.001.02. So if you don't know which version your bank supports, you should try version 008.001.02 first.
 
55
 
 
56
This module uses the framework provided by the banking addons, cf https://launchpad.net/banking-addons
 
57
 
 
58
Please contact Alexis de Lattre from Akretion <alexis.delattre@akretion.com> for any help or question about this module.
 
59
Adapted to account_payment_extension by Acysos S.L. <info@acysos.com>
 
60
    ''',
 
61
    'active': False,
 
62
    'installable': True,
 
63
}