[FIX] website_crm_partner_assign: Selecting 'All Grades' => exception
[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 {   
22     'name': 'Belgium - Accounting',
23     'version': '1.1',
24     'category': 'Localization/Account Charts',
25     'description': """
26 This is the base module to manage the accounting chart for Belgium in OpenERP.
27 ==============================================================================
28
29 After installing this module, the Configuration wizard for accounting is launched.
30     * We have the account templates which can be helpful to generate Charts of Accounts.
31     * On that particular wizard, you will be asked to pass the name of the company,
32       the chart template to follow, the no. of digits to generate, the code for your
33       account and bank account, currency to create journals.
34
35 Thus, the pure copy of Chart Template is generated.
36
37 Wizards provided by this module:
38 --------------------------------
39     * Partner VAT Intra: Enlist the partners with their related VAT and invoiced
40       amounts. Prepares an XML file format.
41       
42         **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Partner VAT Intra
43     * Periodical VAT Declaration: Prepares an XML file for Vat Declaration of
44       the Main company of the User currently Logged in.
45       
46         **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Periodical VAT Declaration
47     * Annual Listing Of VAT-Subjected Customers: Prepares an XML file for Vat
48       Declaration of the Main company of the User currently Logged in Based on
49       Fiscal year.
50       
51         **Path to access :** Invoicing/Reporting/Legal Reports/Belgium Statements/Annual Listing Of VAT-Subjected Customers
52
53     """,
54     'author': 'Noviat & OpenERP SA',
55     'depends': [
56         'account',
57         'base_vat',
58         'base_iban',
59         'account_chart',
60         'l10n_be_coda',
61         'l10n_multilang',
62     ],
63     'data': [
64         'account_financial_report.xml',
65         'account_pcmn_belgium.xml',
66         'account_tax_code_template.xml',
67         'account_chart_template.xml',
68         'account_tax_template.xml',
69         'wizard/l10n_be_account_vat_declaration_view.xml',
70         'wizard/l10n_be_vat_intra_view.xml',
71         'wizard/l10n_be_partner_vat_listing.xml',
72         'wizard/account_wizard.xml',
73         'l10n_be_sequence.xml',
74         'fiscal_templates.xml',
75         'account_fiscal_position_tax_template.xml',
76         'security/ir.model.access.csv',
77     ],
78     'demo': [],
79     'installable': True,
80     'images': ['images/1_config_chart_l10n_be.jpeg','images/2_l10n_be_chart.jpeg'],
81 }
82 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: