~therp-nl/banking-addons/ba70-bank_statement_order

« back to all changes in this revision

Viewing changes to base_iban_bic_not_required/__openerp__.py

  • Committer: Guewen Baconnier
  • Author(s): Stefan Rijnhart
  • Date: 2013-08-12 07:08:19 UTC
  • mfrom: (175.1.5 ba70-bic_not_required)
  • Revision ID: guewen.baconnier@camptocamp.com-20130812070819-3gq9n2r85a0dwtqz
[ADD] Module base_iban_bic_not_required

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2013 Therp BV (<http://therp.nl>).
 
5
#    All Rights Reserved
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
 
 
22
{
 
23
    'name': 'IBAN - Bic not required',
 
24
    'version': '0.1',
 
25
    'license': 'AGPL-3',
 
26
    'author': 'Banking addons community',
 
27
    'website': 'https://launchpad.net/banking-addons',
 
28
    'category': 'Banking addons',
 
29
    'depends': [
 
30
        'base_iban',
 
31
        ],
 
32
    'description': '''
 
33
The account_iban module in OpenERP mandates the presence of a BIC
 
34
code on an IBAN account number through a constraint. However, as of
 
35
Februari 2012 there is a resolution from the EU that drops this requirement
 
36
(see section 8 of [1]). This module reverts the constraint on BICs in the
 
37
base_iban module.
 
38
 
 
39
See also https://bugs.launchpad.net/openobject-addons/+bug/933472
 
40
 
 
41
[1] http://www.europarl.europa.eu/sides/getDoc.do?pubRef=-//EP//TEXT+TA+P7-TA-2012-0037+0+DOC+XML+V0//EN&language=EN#BKMD-9
 
42
    ''',
 
43
    'data': [
 
44
        'data/res_partner_bank_type_field.xml',
 
45
        ],
 
46
    'installable': True,
 
47
}