~acysos-team/acysos/openerp-addons-6.1

« back to all changes in this revision

Viewing changes to nan_account_bank_statement/__openerp__.py

  • Committer: Ignacio Ibeas - Acysos S.L.
  • Date: 2014-05-28 17:57:59 UTC
  • Revision ID: ignacio@acysos.com-20140528175759-02zntdksb8zw894w
[ADD] nan_account_bank_statement: migrated to OpenERP 6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: latin-1 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2010 - NaN Projectes de proramari lliure S.L.
 
5
#                      (http://www.nan-tic.com) 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 a Free Software
 
12
# Service Company
 
13
#
 
14
# This program is Free Software; you can redistribute it and/or
 
15
# modify it under the terms of the GNU General Public License
 
16
# as published by the Free Software Foundation; either version 2
 
17
# of the License, or (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, write to the Free Software
 
26
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
27
#
 
28
##############################################################################
 
29
 
 
30
{
 
31
    "name" : "nan_account_bank_statement",
 
32
    "version" : "0.1",
 
33
    "description" : """\
 
34
This enhances standard bank statements by:
 
35
 
 
36
- Adding a new button in statement lines to split the line in two.
 
37
- Adding key/value information in statement lines which can later be used by other modules for automatically finding move lines to be reconciled.""",
 
38
    "author" : "NaN·tic",
 
39
    "website" : "http://www.NaN-tic.com",
 
40
    "depends" : [ 
 
41
        'account',
 
42
        'account_voucher',
 
43
        'base_vat',
 
44
    ], 
 
45
    "category" : "Accounting",
 
46
    "init_xml" : [],
 
47
    "demo_xml" : [],
 
48
    "update_xml" : [
 
49
            'security/ir.model.access.csv',
 
50
        'account_statement_view.xml',
 
51
    ],
 
52
    "active": False,
 
53
    "installable": True
 
54
}
 
55
 
 
56
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: