[FIX] Autofocus on create mode
[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 - Accounting',
37     'version': '0.1',
38     'category': 'Localization/Account Charts',
39     'description': """
40 Agrega una nomenclatura contable para Honduras. También incluye impuestos y la
41 moneda Lempira. -- Adds accounting chart for Honduras. It also includes taxes
42 and the Lempira currency.""",
43     'author': 'Salvatore Josue Trimarchi Pinto',
44     'website': 'http://trimarchi.co.cc',
45     'depends': ['base', 'account', 'account_chart'],
46     'init_xml': [],
47     'update_xml': [
48         'account_types.xml',
49         'account_chart.xml',
50         'account_tax.xml',
51         'l10n_hn_base.xml',
52     ],
53     'demo_xml': [],
54     'installable': True,
55 }
56 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: