[MODULE] version 7.0.1.1
[burette/account_export_csv.git] / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # Author Joel Grand-Guillaume and Vincent Renaville Copyright 2013 Camptocamp SA
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as
8 # published by the Free Software Foundation, either version 3 of the
9 # License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #
19 ##############################################################################
20
21 {
22 'name' : 'Account Export CSV',
23 'version' : '1.1',
24 'depends' : [
25 'account',
26 ],
27 'author' : 'Camptocamp',
28 'description': """
29
30 Add a wizard that allow you to export a csv file based on accounting journal entries
31
32 - Trial Balance
33 - Analytic Balance (with accounts)
34 - Journal Entries
35
36 You can filter by period
37
38 TODO: rearange wizard view with only one button to generate file plus define a selection list to select report type
39 """,
40 'website': 'http://www.camptocamp.com',
41 'data': [
42 'wizard/account_export_csv_view.xml',
43 'menu.xml',
44 ],
45 'installable': True,
46 'active': False,
47 }