Launchpad automatic translations update.
[odoo/odoo.git] / addons / l10n_ch / __openerp__.py
1 # -*- coding: utf-8 -*-
2 #
3 #  __terp__.py
4 #  l10n_ch
5 #
6 #  Created by Nicolas Bessi based on Credric Krier contribution
7 #
8 #  Copyright (c) 2009 CamptoCamp. All rights reserved.
9 ##############################################################################
10 #
11 # WARNING: This program as such is intended to be used by professional
12 # programmers who take the whole responsability of assessing all potential
13 # consequences resulting from its eventual inadequacies and bugs
14 # End users who are looking for a ready-to-use solution with commercial
15 # garantees and support are strongly adviced to contract a Free Software
16 # Service Company
17 #
18 # This program is Free Software; you can redistribute it and/or
19 # modify it under the terms of the GNU General Public License
20 # as published by the Free Software Foundation; either version 2
21 # of the License, or (at your option) any later version.
22 #
23 # This program is distributed in the hope that it will be useful,
24 # but WITHOUT ANY WARRANTY; without even the implied warranty of
25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26 # GNU General Public License for more details.
27 #
28 # You should have received a copy of the GNU General Public License
29 # along with this program; if not, write to the Free Software
30 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31 #
32 ##############################################################################
33 {
34     "name" : "Switzerland localisation corrected by Camptocamp",
35     "description" : """
36 Swiss localisation :
37  - DTA generation for a lot of payment types
38  - BVR management (number generation, report, etc..)
39  - Import account move from the bank file (like v11 etc..)
40  - Simplify the way you handle the bank statement for reconciliation
41
42 You can also add with this module one of the following account plan:
43  - l10n_ch_c2c_pcg
44
45
46
47 ------------------------------------------------------------------------
48
49 Module incluant la localisation Suisse de TinyERP revu et corrigé par Camptocamp. Cette nouvelle version
50 comprend la gestion et l'émissionde BVR, le paiement électronique via DTA (pour les banques, le système postal est en développement)
51 et l'import du relevé de compte depuis la banque de manière automatisée.
52 De plus, nous avons intégré la définition de toutes les banques Suisses(adresse, swift et clearing).
53
54 Par ailleurs, conjointement à ce module, nous proposons 1 plan comptables issus de l'USAM :
55
56
57  - l10n_ch_c2c_pcg
58
59 --------------------------------------------------------------------------
60 TODO :
61 - Implement bvr import partial reconciliation
62 - Replace wizard by osv_memory when possible
63 - Add mising HELP
64 - Finish code comment
65 - Improve demo data
66
67
68 """,
69     "version" : "5.0",
70     "author" : "Camptocamp SA",
71     "category" : "Localisation/Europe",
72     "website": "http://www.camptocamp.com",
73
74     "depends" : [
75         "base_vat",
76         "base_iban",
77         "account_payment",
78         "account_voucher",
79     ],
80     "init_xml" : [
81         "dta_data.xml",
82         "vaudtax_data.xml",
83     ],
84     "demo_xml" : [
85         "demo/vaudtax_data_demo.xml",
86     ],
87     "update_xml" : [
88         "dta_view.xml",
89         "wizard/bvr_import_view.xml",
90         "wizard/bvr_report_view.xml",
91         "wizard/create_dta_view.xml",
92         "company_view.xml",
93         "account_invoice.xml",
94         "bank_view.xml",
95         "account_journal_view.xml",
96         "security/ir.model.access.csv",
97     ],
98     'test' : [
99         'test/l10n_ch_report.yml',
100     ],
101     "active": False,
102     "installable": True,
103 }
104 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: