[FIX] website: Odoo's social URLs
[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
8 #    by 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 The field tax_discount has also been added in the account.tax.template and 
43 account.tax objects to allow the proper computation of some Brazilian VATs 
44 such as ICMS. The chart of account creation wizard has been extended to 
45 propagate those new data properly.
46
47 It's important to note however that this module lack many implementations to 
48 use OpenERP properly in Brazil. Those implementations (such as the electronic 
49 fiscal Invoicing which is already operational) are brought by more than 15 
50 additional modules of the Brazilian Launchpad localization project 
51 https://launchpad.net/openerp.pt-br-localiz and their dependencies in the 
52 extra addons branch. Those modules aim at not breaking with the remarkable 
53 OpenERP modularity, this is why they are numerous but small. One of the 
54 reasons for maintaining those modules apart is that Brazilian Localization 
55 leaders need commit rights agility to complete the localization as companies 
56 fund the remaining legal requirements (such as soon fiscal ledgers, 
57 accounting SPED, fiscal SPED and PAF ECF that are still missing as September 
58 2011). Those modules are also strictly licensed under AGPL V3 and today don't 
59 come with any additional paid permission for online use of 'private modules'.
60 """,
61     'license': 'AGPL-3',
62     'author': 'Akretion, OpenERP Brasil',
63     'website': 'http://openerpbrasil.org',
64     'version': '0.6',
65     'depends': ['account','account_chart'],
66     'data': [
67                 'data/account.account.type.csv',
68                 'data/account.account.template.csv',
69                 'data/account_tax_code_template.xml',
70                 'data/account_chart_template.xml',
71                 'data/account_tax_template.xml',
72                 'account_view.xml',
73                 'l10n_br_wizard.xml',
74     ],
75     'installable': True,
76 }
77