~openerp-luxembourg/openobject-addons/6.0-luxembourg-localization-addons

« back to all changes in this revision

Viewing changes to account_payment_import_statement/__openerp__.py

  • Committer: Xavier ALT
  • Date: 2012-02-01 11:00:46 UTC
  • Revision ID: xavier@thamini.com-20120201110046-svv9frhef8g4zfeq
[ADD] add new 'account_payment_import_statement'

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    account_payment_import_multiline module for OpenERP, multiline bank statement import
 
5
#    Copyright (C) 2011 Thamini S.à.R.L (<http://www.thamini.com) Xavier ALT
 
6
#
 
7
#    This file is a part of account_payment_import_multiline
 
8
#
 
9
#    account_payment_import_multiline is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU General Public License as published by
 
11
#    the Free Software Foundation, either version 3 of the License, or
 
12
#    (at your option) any later version.
 
13
#
 
14
#    account_payment_import_multiline 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 General Public License for more details.
 
18
#
 
19
#    You should have received a copy of the GNU General Public License
 
20
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
#
 
22
##############################################################################
 
23
{
 
24
    'name': 'account_payment_import_statement',
 
25
    'version': '0.1',
 
26
    'author': 'Thamini S.à.R.L',
 
27
    'website': 'http://www.thamini.com',
 
28
    'description': """
 
29
        Allow importation of electronic bank statement (format MT940e)
 
30
        exported from multiline
 
31
 
 
32
        A wizard allow you to easily import thoses electronic bank statements.
 
33
    """,
 
34
    'depends': [
 
35
        'account_payment',
 
36
    ],
 
37
    'init_xml': [
 
38
    ],
 
39
    'demo_xml': [
 
40
    ],
 
41
    'update_xml': [
 
42
        'account_bank_statement_view.xml',
 
43
        'account_bank_statement_import_view.xml',
 
44
    ],
 
45
    'active': False,
 
46
    'installable': True,
 
47
}