[FIX] When creating a procurement from a move, respect the right UoM conversions
[odoo/odoo.git] / addons / l10n_do / __openerp__.py
1 # -*- coding: utf-8 -*-
2 # #############################################################################
3 #
4 # First author: Jose Ernesto Mendez <tecnologia@obsdr.com> (Open Business Solutions SRL.)
5 # Copyright (c) 2012 -TODAY Open Business Solutions, SRL. (http://obsdr.com). All rights reserved.
6 #
7 # This is a fork to upgrade to odoo 8.0
8 # by Marcos Organizador de Negocios - Eneldo Serrata - www.marcos.org.do
9 #
10 #
11 # WARNING: This program as such is intended to be used by professional
12 # programmers who take the whole responsability of assessing all potential
13 # consequences resulting from its eventual inadequacies and bugs.
14 # End users who are looking for a ready-to-use solution with commercial
15 # garantees and support are strongly adviced to contract a Free Software
16 # Service Company like Marcos Organizador de Negocios.
17 #
18 # This program is Free Software; you can redistribute it and/or
19 # modify it under the terms of the GNU General Public License
20 # as published by the Free Software Foundation; either version 2
21 # of the License, or (at your option) any later version.
22 #
23 # This program is distributed in the hope that it will be useful,
24 # but WITHOUT ANY WARRANTY; without even the implied warranty of
25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26 # GNU General Public License for more details.
27 #
28 # You should have received a copy of the GNU General Public License
29 # along with this program; if not, write to the Free Software
30 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
31 #
32 ##############################################################################
33
34 {
35     'name': 'Dominican Republic - Accounting',
36     'version': '1.0',
37     'category': 'Localization/Account Charts',
38     'description': """
39 This is the base module to manage the accounting chart for Dominican Republic.
40 ==============================================================================
41
42 * Chart of Accounts.
43 * The Tax Code Chart for Domincan Republic
44 * The main taxes used in Domincan Republic
45 * Fiscal position for local """,
46     'author': 'Eneldo Serrata - Marcos Organizador de Negocios, SRL.',
47     'website': 'http://marcos.do',
48     'depends': ['account', 'base_iban'],
49     'data': [
50         # basic accounting data
51         'data/ir_sequence_type.xml',
52         'data/ir_sequence.xml',
53         'data/account_journal.xml',
54         'data/account.account.type.csv',
55         'data/account.account.template.csv',
56         'data/account.tax.code.template.csv',
57         'data/account_chart_template.xml',
58         'data/account.tax.template.csv',
59         'data/l10n_do_base_data.xml',
60         # Adds fiscal position
61         'data/account.fiscal.position.template.csv',
62         'data/account.fiscal.position.tax.template.csv',
63         # configuration wizard, views, reports...
64         'data/l10n_do_wizard.xml'
65     ],
66     'test': [],
67     'demo': [],
68     'installable': True,
69     'auto_install': False,
70 }
71
72 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: