[FIX] account,purchase,hr_timesheet_sheet: fixed broken translation template files...
[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  - Swiws account chart that add also tax template definition
42
43 ------------------------------------------------------------------------
44
45 Module incluant la localisation Suisse de TinyERP revu et corrigé par Camptocamp. Cette nouvelle version
46 comprend la gestion et l'émissionde BVR, le paiement électronique via DTA (pour les banques, le système postal est en développement),
47 l'import du relevé de compte depuis la banque de manière automatisée, le plan de compte Swiws.
48 De plus, nous avons intégré la définition de toutes les banques Suisses(adresse, swift et clearing).
49
50 --------------------------------------------------------------------------
51 TODO :
52 - Implement bvr import partial reconciliation
53 - Replace wizard by osv_memory when possible
54 - Add mising HELP
55 - Finish code comment
56 - Improve demo data
57
58
59 """,
60     "version" : "5.1",
61     "author" : "Camptocamp SA",
62     "category" : "Localisation/Account Charts",
63     "website": "http://www.camptocamp.com",
64
65     "depends" : [
66         "base_vat",
67         "base_iban",
68         "account_payment",
69         "account_voucher",
70         "account",
71         "account_chart",
72     ],
73     "init_xml" : [
74         "dta_data.xml",
75         "vaudtax_data.xml",
76         'account.xml',
77         'vat.xml',
78     ],
79     "demo_xml" : [
80         "demo/vaudtax_data_demo.xml",
81     ],
82     "update_xml" : [
83         "dta_view.xml",
84         "wizard/bvr_import_view.xml",
85         "wizard/bvr_report_view.xml",
86         "wizard/create_dta_view.xml",
87         "company_view.xml",
88         "account_invoice.xml",
89         "bank_view.xml",
90         'wizard.xml',
91         'security/ir.model.access.csv',
92     ],
93     'test' : [
94         'test/l10n_ch_report.yml',
95     ],
96     "active": False,
97     "installable": True,
98 }
99 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: