[ADD] added the .pot file for account_bank_statement_extensions module
[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 Adds
32 - valuta date
33 - batch payments
34 - traceability of changes to bank statement lines
35 - bank statement line views
36 - bank statements balances report
37 - performance improvements for digital import of bank statement (via 'ebanking_import' context flag)
38 - name_search on res.partner.bank enhanced to allow search on bank and iban account numbers
39 - new field bank_ids on res.company to facilitate search on company banks
40     ''',
41     'depends': ['account'],
42     'demo_xml': [],
43     'init_xml': [
44     ],
45     'update_xml' : [
46         'security/ir.model.access.csv',
47         'account_bank_statement_view.xml',
48         'company_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     'active': False,
55     'installable': True,
56 }
57