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