[MERGE] merge with latest stable
[odoo/odoo.git] / addons / l10n_ch / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    Author: Nicolas Bessi. Copyright Camptocamp SA
5 #    Donors: Hasa Sàrl, Open Net Sàrl and Prisme Solutions Informatique SA
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 {
23     "name" : "Switzerland - localization with 2011 taxes",
24     "description" : """
25 Swiss localisation :
26  - DTA generation for a lot of payment types
27  - BVR management (number generation, report, etc..)
28  - Import account move from the bank file (like v11 etc..)
29  - Simplify the way you handle the bank statement for reconciliation
30
31 You can also add ZIP and bank completion with:
32  - l10n_ch_zip
33  - l10n_ch_bank
34  
35  Author: Camptocamp SA
36  Donors: Hasa Sàrl, Open Net Sàrl and Prisme Solutions Informatique SA
37
38 ------------------------------------------------------------------------
39
40 Module incluant la localisation Suisse de TinyERP revu et corrigé par Camptocamp. Cette nouvelle version
41 comprend la gestion et l'émissionde BVR, le paiement électronique via DTA (pour les banques, le système postal est en développement)
42 et l'import du relevé de compte depuis la banque de manière automatisée.
43 De plus, nous avons intégré la définition de toutes les banques Suisses(adresse, swift et clearing).
44
45 Par ailleurs, conjointement à ce module, nous proposons la complétion NPA:
46
47 Vous pouvez ajouter la completion des banques et des NPA avec with:
48  - l10n_ch_zip
49  - l10n_ch_bank
50  
51  Auteur: Camptocamp SA
52  Donateurs: Hasa Sàrl, Open Net Sàrl and Prisme Solutions Informatique SA
53
54 --------------------------------------------------------------------------
55 TODO :
56 - Implement bvr import partial reconciliation
57 - Replace wizard by osv_memory when possible
58 - Add mising HELP
59 - Finish code comment
60 - Improve demo data
61
62
63 """,
64     "version" : "6.0",
65     "author" : "Camptocamp SA",
66     "category" : "Localization/Account Charts",
67     "website": "http://www.camptocamp.com",
68
69     "depends" : [
70         "account_cancel",
71         "base_iban",
72         "account_payment",
73         "account_voucher",
74         "report_webkit",
75     ],
76     "init_xml" : [
77         "dta_data.xml",
78         "journal_data.xml",
79         #FR sterchi chart data
80         'sterchi_chart/account.xml',
81         'sterchi_chart/vat.xml', #JUST REMOVE THIS FILE WHEN OBSOLETE. ALL REQUIERED DATA IN VAT2011.XML
82         'sterchi_chart/vat2011.xml',
83         'sterchi_chart/fiscal_position.xml',
84     ],
85     "demo_xml" : [
86         "demo/demo.xml",
87     ],
88     "update_xml" : [
89         "wizard.xml",
90         "dta_view.xml",
91         "wizard/bvr_import_view.xml",
92         "wizard/create_dta_view.xml",
93         "company_view.xml",
94         "account_invoice.xml",
95         "bank_view.xml",
96         "security/ir.model.access.csv",
97         "report/report_webkit_html_view.xml",
98     ],
99     'test' : [
100         'test/l10n_ch_report.yml',
101     ],
102     "active": False,
103     "installable": True,
104     "certificate" : "001103836064567088989",
105 }
106 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: