~clearcorp-drivers/banking-addons/5.0-ccorp

« back to all changes in this revision

Viewing changes to account_banking_nl_triodos/__openerp__.py

  • Committer: Pieter J. Kersten
  • Date: 2011-04-27 15:05:32 UTC
  • mfrom: (57.2.2 nl_abnamro-triodos)
  • Revision ID: p.j.kersten@edusense.nl-20110427150532-2hmx4jak6r5t8z55
[MERGE] account_banking_nl_triodos & account_banking_nl_abnamro
        by Stefan Rijnhart, Therp

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
#    Copyright (C) 2009 - 2011 EduSense BV (<http://www.edusense.nl>)
 
4
#                              and Therp BV (<http://therp.nl>)
 
5
#    All Rights Reserved
 
6
#
 
7
#    WARNING: This program as such is intended to be used by professional
 
8
#    programmers who take the whole responsability of assessing all potential
 
9
#    consequences resulting from its eventual inadequacies and bugs
 
10
#    End users who are looking for a ready-to-use solution with commercial
 
11
#    garantees and support are strongly adviced to contract EduSense BV
 
12
#    or Therp BV
 
13
#
 
14
#    This program is free software: you can redistribute it and/or modify
 
15
#    it under the terms of the GNU General Public License as published by
 
16
#    the Free Software Foundation, either version 3 of the License, or
 
17
#    (at your option) any later version.
 
18
#
 
19
#    This program is distributed in the hope that it will be useful,
 
20
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
#    GNU General Public License for more details.
 
23
#
 
24
#    You should have received a copy of the GNU General Public License
 
25
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
26
#
 
27
##############################################################################
 
28
{
 
29
    'name': 'Triodos (NL) Bank Statements Import',
 
30
    'version': '0.1',
 
31
    'license': 'GPL-3',
 
32
    'author': 'Therp BV / EduSense BV',
 
33
    'website': 'https://launchpad.net/account-banking',
 
34
    'category': 'Account Banking',
 
35
    'depends': ['account_banking'],
 
36
    'init_xml': [],
 
37
    'update_xml': [
 
38
        #'security/ir.model.access.csv',
 
39
    ],
 
40
    'demo_xml': [],
 
41
    'description': '''
 
42
Module to import Dutch Triodos bank format transation files (CSV format).
 
43
 
 
44
As the Triodos bank does not provide detailed specification concerning possible
 
45
values and their meaning for the fields in the CSV file format, the statements
 
46
are parsed according to an educated guess based on incomplete information.
 
47
You can contact the account-banking developers through their launchpad page and
 
48
help improve the performance of this import filter on
 
49
https://launchpad.net/account-banking.
 
50
 
 
51
Note that imported bank transfers are organized in statements covering periods
 
52
of one week, even if the imported files cover a different period.
 
53
 
 
54
This modules contains no logic, just an import filter for account_banking.
 
55
    ''',
 
56
    'active': False,
 
57
    'installable': True,
 
58
}