~vauxoo/web-addons/7.0-web_hideleftmenu

« back to all changes in this revision

Viewing changes to web_export_view/__openerp__.py

  • Committer: Leonardo Pistone
  • Date: 2013-06-04 07:29:47 UTC
  • mto: (3.9.2 web-addons-merge169000)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: leonardo.pistone@domsense.com-20130604072947-7qwuf6xkgqjmig2m
[add] module web_export_view copied from 6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#    
 
4
#    Copyright (C) 2012 Domsense srl (<http://www.domsense.com>)
 
5
#    Copyright (C) 2012-2013 Agile Business Group sagl
 
6
#    (<http://www.agilebg.com>)
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as published
 
10
#    by the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
{
 
24
    'name': 'Export Current View',
 
25
    'version': '1.0',
 
26
    'category': 'Web',
 
27
    'description': """
 
28
WEB EXPORT VIEW
 
29
===============
 
30
 
 
31
One of the best OpenERP’s features is exporting custom data to CSV/XLS. You can do it by clicking on the export link in the sidebar. The export action allows use to configure what to be exported by selecting fields, etc, and allows you to save your export as a template so that you can export it once again without having to configure it again.
 
32
 
 
33
That feature is as great and advanced as limited for an everyday-customer-experience. A lot of customers want simply to export the tree view they are looking to.
 
34
 
 
35
If you miss this feature as us, probably you’ll find an answer into our web_export_view module.
 
36
 
 
37
After you installed it, you’ll find an additional link ‘Export current view’ right below the ‘Export’ one. By clicking on it you’ll get a XLS file contains the same data of the tree view you are looking at, headers included.
 
38
""",
 
39
    'author': 'Agile Business Group',
 
40
    'website': 'http://www.agilebg.com',
 
41
    'license': 'AGPL-3',
 
42
    'depends': ['web'],
 
43
    'external_dependencies' : {
 
44
        'python' : ['xlwt'],
 
45
     },
 
46
    'data': [],
 
47
    'active': False,
 
48
    'auto_install': False,
 
49
    'js': [
 
50
        'static/js/web_advanced_export.js',
 
51
    ],
 
52
}
 
53