[MERGE] addons 16 survey
[odoo/odoo.git] / addons / l10n_fr_rib / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2011 Numérigraphe SARL.
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': 'French RIB Bank Details',
24     'version': '1.0',
25     'category': 'Hidden/Dependency',
26     'description': """
27 This module lets users enter the banking details of Partners in the RIB format (French standard for bank accounts details).
28 ===========================================================================================================================
29
30 RIB Bank Accounts can be entered in the "Accounting" tab of the Partner form by specifying the account type "RIB". 
31
32 The four standard RIB fields will then become mandatory:
33 --------------------------------------------------------    
34     - Bank Code
35     - Office Code
36     - Account number
37     - RIB key
38     
39 As a safety measure, OpenERP will check the RIB key whenever a RIB is saved, and
40 will refuse to record the data if the key is incorrect. Please bear in mind that
41 this can only happen when the user presses the 'save' button, for example on the
42 Partner Form. Since each bank account may relate to a Bank, users may enter the
43 RIB Bank Code in the Bank form - it will the pre-fill the Bank Code on the RIB
44 when they select the Bank. To make this easier, this module will also let users
45 find Banks using their RIB code.
46
47 The module base_iban can be a useful addition to this module, because French banks
48 are now progressively adopting the international IBAN format instead of the RIB format.
49 The RIB and IBAN codes for a single account can be entered by recording two Bank
50 Accounts in OpenERP: the first with the type 'RIB', the second with the type 'IBAN'. 
51 """,
52     'author' : u'Numérigraphe SARL',
53     'depends': ['account', 'base_iban'],
54     'data': ['bank_data.xml', 'bank_view.xml'],
55     'installable': True,
56     'auto_install': False,
57 }
58
59 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: