mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[add] port web_export_view to OpenERP 7
This commit is contained in:
committed by
Pedro M. Baeza
parent
d6ee226cd4
commit
5327689b97
@@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
#
|
||||
# Copyright (C) 2012 Domsense srl (<http://www.domsense.com>)
|
||||
# Copyright (C) 2012-2013 Agile Business Group sagl
|
||||
# (<http://www.agilebg.com>)
|
||||
@@ -22,32 +22,38 @@
|
||||
|
||||
{
|
||||
'name': 'Export Current View',
|
||||
'version': '1.0',
|
||||
'version': '1.1',
|
||||
'category': 'Web',
|
||||
'description': """
|
||||
WEB EXPORT VIEW
|
||||
===============
|
||||
|
||||
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.
|
||||
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.
|
||||
|
||||
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.
|
||||
That feature is as great and advanced as limited for an everyday experience.
|
||||
A lot of customers want simply to export the tree view they are looking to.
|
||||
|
||||
If you miss this feature as us, probably you’ll find an answer into our web_export_view module.
|
||||
If you miss this feature as us, probably you’ll find an answer into our
|
||||
web_export_view module.
|
||||
|
||||
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.
|
||||
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.
|
||||
""",
|
||||
'author': 'Agile Business Group',
|
||||
'website': 'http://www.agilebg.com',
|
||||
'license': 'AGPL-3',
|
||||
'depends': ['web'],
|
||||
'external_dependencies' : {
|
||||
'python' : ['xlwt'],
|
||||
},
|
||||
'data': [],
|
||||
'active': False,
|
||||
# 'external_dependencies': {
|
||||
# 'python': ['xlwt'],
|
||||
# },
|
||||
'js': ['static/*/*.js', 'static/*/js/*.js'],
|
||||
'qweb': ['static/xml/web_advanced_export.xml'],
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'js': [
|
||||
'static/js/web_advanced_export.js',
|
||||
],
|
||||
'web_preload': False,
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user