[FIX] l10n_hn: Set the right category
[odoo/odoo.git] / addons / l10n_hn / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2009-2010 Salvatore J. Trimarchi <salvatore@trimarchi.co.cc>
5 # (http://salvatoreweb.co.cc)
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 #
23 # This module provides a minimal Honduran chart of accounts that can be use
24 # to build upon a more complex one.  It also includes a chart of taxes and
25 # the Lempira currency.
26 #
27 # This module is based on the Guatemalan chart of accounts:
28 # Copyright (c) 2009-2010 Soluciones Tecnologócias Prisma S.A. All Rights Reserved.
29 # José Rodrigo Fernández Menegazzo, Soluciones Tecnologócias Prisma S.A.
30 # (http://www.solucionesprisma.com)
31 #
32 # This module works with OpenERP 6.0
33 #
34
35 {
36     'name': 'Honduras - Plan contable general',
37     'version': '0.1',
38     'category': 'Localization/Account Charts',
39     'description': """Agrega una nomenclatura contable para Honduras. También incluye impuestos y la moneda Lempira. -- Adds accounting chart for Honduras.  It also includes taxes and the Lempira currency""",
40     'author': 'Salvatore Josue Trimarchi Pinto',
41     'website': 'http://trimarchi.co.cc',
42     'depends': ['base', 'account', 'account_chart'],
43     'init_xml': [],
44     'update_xml': [
45         'account_types.xml',
46         'account_chart.xml',
47         'account_tax.xml',
48         'l10n_hn_base.xml',
49     ],
50     'demo_xml': [],
51     'installable': True,
52     'certificate': '', 
53 }
54 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: