[TYPO] Set the right category for the Point Of Sale
[odoo/odoo.git] / addons / l10n_br / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 #################################################################################
3 #
4 #    Copyright (C) 2009  Renato Lima - Akretion
5 #
6 #    This program is free software: you can redistribute it and/or modify
7 #    it under the terms of the GNU Affero 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 {
22     'name': 'Brazilian - Accounting',
23     'category': 'Localization/Account Charts',
24     'description': """
25 Base module for the Brazilian localization.
26 ===========================================
27
28 This module consists in:
29
30  - Generic Brazilian chart of accounts
31  - Brazilian taxes such as:
32
33         - IPI
34         - ICMS
35         - PIS
36         - COFINS
37         - ISS
38         - IR
39         - IRPJ
40         - CSLL
41
42  - Tax Situation Code (CST) required for the electronic fiscal invoicing (NFe)
43
44 The field tax_discount has also been added in the account.tax.template and account.tax
45 objects to allow the proper computation of some Brazilian VATs such as ICMS. The
46 chart of account creation wizard has been extended to propagate those new data properly.
47
48 It's important to note however that this module lack many implementations to use
49 OpenERP properly in Brazil. Those implementations (such as the electronic fiscal
50 Invoicing which is already operational) are brought by more than 15 additional
51 modules of the Brazilian Launchpad localization project
52 https://launchpad.net/openerp.pt-br-localiz and their dependencies in the extra
53 addons branch. Those modules aim at not breaking with the remarkable OpenERP
54 modularity, this is why they are numerous but small. One of the reasons for
55 maintaining those modules apart is that Brazilian Localization leaders need commit
56 rights agility to complete the localization as companies fund the remaining legal
57 requirements (such as soon fiscal ledgers, accounting SPED, fiscal SPED and PAF
58 ECF that are still missing as September 2011). Those modules are also strictly
59 licensed under AGPL V3 and today don't come with any additional paid permission
60 for online use of 'private modules'.""",
61     'license': 'AGPL-3',
62     'author': 'Akretion, OpenERP Brasil',
63     'website': 'http://openerpbrasil.org',
64     'version': '0.6',
65     'depends': ['account','account_chart'],
66     'init_xml': [        
67         'data/account.account.type.csv',
68         'data/account.tax.code.template.csv',
69         'data/account.account.template.csv',
70         'data/l10n_br_account_chart_template.xml',
71         'data/account_tax_template.xml',
72         'data/l10n_br_data.xml',
73         'security/ir.model.access.csv',
74                 ],
75     'update_xml': [
76         'account_view.xml',
77         'l10n_br_view.xml',
78     ],
79     'installable': True,
80     'certificate' : '001280994939126801405',
81 }
82
83 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: