[MERGE] forward port of branch 7.0 up to 65d92da
[odoo/odoo.git] / addons / account_bank_statement_extensions / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    
6 #    Copyright (c) 2011 Noviat nv/sa (www.noviat.be). All rights reserved.
7
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22 {
23     'name': 'Bank Statement Extensions to Support e-banking',
24     'version': '0.3',
25     'license': 'AGPL-3',
26     'author': 'Noviat',
27     'category': 'Generic Modules/Accounting',
28     'description': '''
29 Module that extends the standard account_bank_statement_line object for improved e-banking support.
30 ===================================================================================================
31
32 This module adds:
33 -----------------
34     - valuta date
35     - batch payments
36     - traceability of changes to bank statement lines
37     - bank statement line views
38     - bank statements balances report
39     - performance improvements for digital import of bank statement (via 
40       'ebanking_import' context flag)
41     - name_search on res.partner.bank enhanced to allow search on bank 
42       and iban account numbers
43     ''',
44     'depends': ['account'],
45     'demo': [],
46     'data' : [
47         'security/ir.model.access.csv',
48         'account_bank_statement_view.xml',
49         'account_bank_statement_report.xml',
50         'wizard/confirm_statement_line_wizard.xml',
51         'wizard/cancel_statement_line_wizard.xml',
52         'data/account_bank_statement_extensions_data.xml',
53     ],
54     'auto_install': False,
55     'installable': True,
56 }
57
58 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: