[IMP] changed color of button in meetings view
[odoo/odoo.git] / addons / l10n_be / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (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 Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21 {   'name': 'Belgium - Accounting',
22     'version': '1.1',
23     'category': 'Localization/Account Charts',
24     'description': """
25 This is the base module to manage the accounting chart for Belgium in OpenERP.
26 ==============================================================================
27
28 After installing this module, the Configuration wizard for accounting is launched.
29     * We have the account templates which can be helpful to generate Charts of Accounts.
30     * On that particular wizard, you will be asked to pass the name of the company,
31       the chart template to follow, the no. of digits to generate, the code for your
32       account and bank account, currency to create journals.
33
34 Thus, the pure copy of Chart Template is generated.
35
36 Wizards provided by this module:
37     * Partner VAT Intra: Enlist the partners with their related VAT and invoiced
38       amounts. Prepares an XML file format.
39             Path to access : Invoicing/Reporting/Legal Reports/Belgium Statements/Partner VAT Intra
40     * Periodical VAT Declaration: Prepares an XML file for Vat Declaration of
41       the Main company of the User currently Logged in.
42             Path to access : Invoicing/Reporting/Legal Reports/Belgium Statements/Periodical VAT Declaration
43     * Annual Listing Of VAT-Subjected Customers: Prepares an XML file for Vat
44       Declaration of the Main company of the User currently Logged in Based on
45       Fiscal year.
46             Path to access : Invoicing/Reporting/Legal Reports/Belgium Statements/Annual Listing Of VAT-Subjected Customers
47
48     """,
49     'author': 'Noviat & OpenERP SA',
50     'depends': [
51         'account',
52         'base_vat',
53         'base_iban',
54         'account_chart',
55         'account_coda',
56     ],
57     'init_xml': [],
58     'update_xml': [
59         'account_financial_report.xml',
60         'account_pcmn_belgium.xml',
61         'account_tax_code_template.xml',
62         'account_chart_template.xml',
63         'account_tax_template.xml',
64         'wizard/l10n_be_account_vat_declaration_view.xml',
65         'wizard/l10n_be_vat_intra_view.xml',
66         'wizard/l10n_be_partner_vat_listing.xml',
67         'l10n_be_sequence.xml',
68         'fiscal_templates.xml',
69         'account_fiscal_position_tax_template.xml',
70         'security/ir.model.access.csv',
71         'l10n_be_wizard.yml'
72     ],
73     'demo_xml': [],
74     'installable': True,
75     'certificate': '0031977724637',
76     'images': ['images/1_config_chart_l10n_be.jpeg','images/2_l10n_be_chart.jpeg'],
77 }
78 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: