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

« back to all changes in this revision

Viewing changes to pxgo_account_admin_tools/__terp__.py

  • Committer: Borja L.S.
  • Date: 2010-05-20 17:10:42 UTC
  • Revision ID: borjals@pexego.es-20100520171042-iot70m8r9b80uyko
[ADD] pxgo_account_admin_tools: New accounting wizards for administrators
  
  Account Adminitration Tools:
  
- Adds a wizard to import accounts from CSV files. This may be useful
  to import the initial accounts into OpenERP.

- Adds a wizard to import account moves from CSV files. This may be 
  useful to import the initial balance into OpenERP.

- Adds a wizard to set the receivable/payable account of the partners,
  in moves and invoices where a generic receivable/payable account
  was used instead.

- Adds a wizard to revalidate confirmed account moves so their analytic
  lines are regenerated. This may be used to fix the data after bugs 
  like https://bugs.launchpad.net/openobject-addons/+bug/582988
  The wizard also lets you find account moves missing their analytic 
  lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
# -*- encoding: utf-8 -*-
 
3
##############################################################################
 
4
#
 
5
#    OpenERP, Open Source Management Solution
 
6
#    Copyright (C) 2004-2009 Pexego Sistemas Informáticos. All Rights Reserved
 
7
#    $Id$
 
8
#
 
9
#    This program 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
#    This program 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
{
 
25
        "name" : "Pexego - Account Admin Tools",
 
26
        "version" : "1.0",
 
27
        "author" : "Pexego",
 
28
        "website" : "http://www.pexego.es",
 
29
        "category" : "Enterprise Specific Modules",
 
30
        "description": """
 
31
Pexego Account Adminitration Tools
 
32
 
 
33
Accounting wizards for administrators:
 
34
 
 
35
- Adds a wizard to import accounts from CSV files. This may be useful
 
36
    to import the initial accounts into OpenERP.
 
37
 
 
38
- Adds a wizard to import account moves from CSV files. This may be useful
 
39
    to import the initial balance into OpenERP.
 
40
 
 
41
- Adds a wizard to set the receivable/payable account of the partners,
 
42
    in moves and invoices where a generic receivable/payable account
 
43
    was used instead.
 
44
 
 
45
- Adds a wizard to revalidate confirmed account moves so their analytic
 
46
    lines are regenerated. This may be used to fix the data after bugs like
 
47
    https://bugs.launchpad.net/openobject-addons/+bug/582988
 
48
    The wizard also lets you find account moves missing their analytic lines.
 
49
            """,
 
50
        "depends" : [
 
51
                        'base',
 
52
                        'account',
 
53
            ],
 
54
        "init_xml" : [],
 
55
        "demo_xml" : [],
 
56
        "update_xml" : [
 
57
                        'admin_tools_menu.xml',
 
58
                        'account_importer_wizard.xml',
 
59
                        'account_move_importer_wizard.xml',
 
60
                        'move_partner_account_wizard.xml',
 
61
                        'revalidate_moves_wizard.xml',
 
62
            ],
 
63
        "installable": True,
 
64
        'active': False
 
65
 
 
66
}
 
67