~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to pxgo_bank_statement_analytic/__openerp__.py

  • Committer: Borja L.S.
  • Date: 2010-06-18 08:46:36 UTC
  • Revision ID: borjals@pexego.es-20100618084636-6534hnl1h2gool92
[ADD] pxgo_bank_statement_analytic: New module to create analytic entries from bank statements.

Extends the Bank Statements to add support for analytic accounting.

A analytic account field will be added to bank statement lines, allowing
the user to directly register small expenses or incomes on analytic accounts.

This may be useful for petty cash management.

Thanks to Igalia (http://www.igalia.com/) for sponsoring this module :) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2004-2010 Pexego Sistemas Informáticos. All Rights Reserved
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU General Public License as published by
 
8
#    the Free Software Foundation, either version 3 of the License, or
 
9
#    (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
{
 
21
        "name" : "Pexego - Analytic in Bank Statements",
 
22
        "version" : "1.0",
 
23
        "author" : "Pexego for Igalia (http://www.igalia.com/)",
 
24
        "website" : "http://www.pexego.es",
 
25
        "category" : "Enterprise Specific Modules",
 
26
        "description": """
 
27
Extends the Bank Statements to add support for analytic accounting.
 
28
 
 
29
A analytic account field will be added to bank statement lines, allowing
 
30
the user to directly register small expenses or incomes on analytic accounts.
 
31
 
 
32
This may be useful for petty cash management.
 
33
            """,
 
34
        "depends" : [
 
35
                'base',
 
36
                'account',
 
37
                #'analytic',
 
38
            ],
 
39
        "init_xml" : [],
 
40
        "demo_xml" : [],
 
41
        "update_xml" : [
 
42
                'bank_statement_view.xml',
 
43
            ],
 
44
        "installable": True,
 
45
        'active': False
 
46
 
 
47
}
 
48