[FIX] l10n_fr: remove depedency to l10n_fr_rib
[odoo/odoo.git] / addons / l10n_fr / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2008 JAILLET Simon - CrysaLEAD - www.crysalead.fr
5 #
6 # WARNING: This program as such is intended to be used by professional
7 # programmers who take the whole responsability of assessing all potential
8 # consequences resulting from its eventual inadequacies and bugs
9 # End users who are looking for a ready-to-use solution with commercial
10 # garantees and support are strongly adviced to contract a Free Software
11 # Service Company
12 #
13 # This program is Free Software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License
15 # as published by the Free Software Foundation; either version 2
16 # of the License, or (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
26 #
27 ##############################################################################
28 {
29     'name': 'France - Accounting',
30     'version': '1.1',
31     'author': 'OpenERP SA',
32     'website': 'http://www.openerp.com',
33     'category': 'Localization/Account Charts',
34     'description': """
35 This is the module to manage the accounting chart for France in OpenERP.
36 ========================================================================
37
38 This module applies to companies based in France mainland. It doesn't apply to
39 companies based in the DOM-TOMs (Guadeloupe, Martinique, Guyane, RĂ©union, Mayotte).
40
41 This localisation module creates the VAT taxes of type 'tax included' for purchases
42 (it is notably required when you use the module 'hr_expense'). Beware that these
43 'tax included' VAT taxes are not managed by the fiscal positions provided by this
44 module (because it is complex to manage both 'tax excluded' and 'tax included'
45 scenarios in fiscal positions).
46
47 This localisation module doesn't properly handle the scenario when a France-mainland
48 company sells services to a company based in the DOMs. We could manage it in the
49 fiscal positions, but it would require to differentiate between 'product' VAT taxes
50 and 'service' VAT taxes. We consider that it is too 'heavy' to have this by default
51 in l10n_fr; companies that sell services to DOM-based companies should update the
52 configuration of their taxes and fiscal positions manually.
53
54 **Credits:** Sistheo, Zeekom, CrysaLEAD, Akretion and Camptocamp.
55 """,
56     'depends': ['base_iban', 'account', 'account_chart', 'base_vat'],
57     'data': [
58         'views/report_l10nfrbilan.xml',
59         'views/report_l10nfrresultat.xml',
60         'l10n_fr_reports.xml',
61         'fr_report.xml',
62         'plan_comptable_general.xml',
63         'l10n_fr_view.xml',
64         'l10n_fr_wizard.xml',
65         'fr_pcg_taxes.xml',
66         'fr_tax.xml',
67         'fr_fiscal_templates.xml',
68         'security/ir.model.access.csv',
69         'wizard/fr_report_bilan_view.xml',
70         'wizard/fr_report_compute_resultant_view.xml',
71     ],
72     'test': ['test/l10n_fr_report.yml'],
73     'demo': [],
74     'auto_install': False,
75     'installable': True,
76     'images': ['images/config_chart_l10n_fr.jpeg','images/l10n_fr_chart.jpeg'],
77 }
78
79 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: