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