[FIX] l10n_be: amounts in xml file MUST have 2 digits after the comma (43.5 isn't...
[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, the chart template to follow, the no. of digits to generate, the code for your account and bank account, currency to create journals.
31
32 Thus, the pure copy of Chart Template is generated.
33
34 Wizards provided by this module:
35     * Partner VAT Intra: Enlist the partners with their related VAT and invoiced amounts.Prepares an XML file format.
36             Path to access : Accounting/Reporting//Legal Statements/Belgium Statements/Partner VAT Listing
37     * Periodical VAT Declaration: Prepares an XML file for Vat Declaration of the Main company of the User currently Logged in.
38             Path to access : Accounting/Reporting/Legal Statements/Belgium Statements/Periodical VAT Declaration
39     * Annual Listing Of VAT-Subjected Customers: Prepares an XML file for Vat Declaration of the Main company of the User currently Logged in.Based on Fiscal year
40             Path to access : Accounting/Reporting/Legal Statements/Belgium Statements/Annual Listing Of VAT-Subjected Customers
41
42     """,
43     'author': 'Noviat & OpenERP SA',
44     'depends': [
45         'account',
46         'base_vat',
47         'base_iban',
48         'account_chart',
49         'account_coda',
50     ],
51     'init_xml': [],
52     'update_xml': [
53         'account_financial_report.xml',
54         'account_pcmn_belgium.xml',
55         'account_tax_code_template.xml',
56         'account_chart_template.xml',
57         'account_tax_template.xml',
58         'wizard/l10n_be_account_vat_declaration_view.xml',
59         'wizard/l10n_be_vat_intra_view.xml',
60         'wizard/l10n_be_partner_vat_listing.xml',
61         'l10n_be_sequence.xml',
62         'fiscal_templates.xml',
63         'account_fiscal_position_tax_template.xml',
64         'security/ir.model.access.csv',
65         'l10n_be_wizard.yml'
66     ],
67     'demo_xml': [],
68     'installable': True,
69     'certificate': '0031977724637',
70     'images': ['images/1_config_chart_l10n_be.jpeg','images/2_l10n_be_chart.jpeg'],
71 }
72 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: