Adil Houmadi
10 years ago
committed by
ernesto
10 changed files with 150 additions and 86 deletions
-
7web_export_view/AUTHORS.txt
-
60web_export_view/README.rst
-
4web_export_view/__init__.py
-
42web_export_view/__openerp__.py
-
21web_export_view/controllers/__init__.py
-
19web_export_view/controllers/controllers.py
-
BINweb_export_view/static/description/icon.png
-
67web_export_view/static/src/js/web_export_view.js
-
5web_export_view/static/src/xml/web_export_view_template.xml
-
11web_export_view/view/web_export_view.xml
@ -1,7 +0,0 @@ |
|||||
Authors |
|
||||
======= |
|
||||
|
|
||||
Simone Orsi <simone.orsi@domsense.com> [simahawk] |
|
||||
Lorenzo Battistini <lorenzo.battistini@agilebg.com> |
|
||||
Stefan Rijnhart <stefan@therp.nl> |
|
||||
Leonardo Pistone <leonardo.pistone@agilebg.com> |
|
@ -0,0 +1,60 @@ |
|||||
|
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg |
||||
|
:alt: License |
||||
|
|
||||
|
Export Current 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 |
||||
|
us 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 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. |
||||
|
|
||||
|
|
||||
|
Usage |
||||
|
===== |
||||
|
|
||||
|
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. |
||||
|
|
||||
|
|
||||
|
|
||||
|
Bug Tracker |
||||
|
=========== |
||||
|
|
||||
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_. |
||||
|
In case of trouble, please check there if your issue has already been reported. |
||||
|
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback |
||||
|
`here <https://github.com/OCA/web/issues/new?body=module:%20web_export_view%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. |
||||
|
|
||||
|
|
||||
|
Credits |
||||
|
======= |
||||
|
|
||||
|
Contributors |
||||
|
------------ |
||||
|
|
||||
|
* Simone Orsi <simahawk@gmail.com> |
||||
|
* Lorenzo Battistini <lorenzo.battistini@agilebg.com> |
||||
|
* Stefan Rijnhart <stefan@therp.nl> |
||||
|
* Leonardo Pistone <leonardo.pistone@camptocamp.com> |
||||
|
|
||||
|
Maintainer |
||||
|
---------- |
||||
|
|
||||
|
.. image:: http://odoo-community.org/logo.png |
||||
|
:alt: Odoo Community Association |
||||
|
:target: http://odoo-community.org |
||||
|
|
||||
|
This module is maintained by the OCA. |
||||
|
|
||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. |
||||
|
|
||||
|
To contribute to this module, please visit http://odoo-community.org. |
@ -0,0 +1,21 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Copyright (C) 2012 Agile Business Group sagl (<http://www.agilebg.com>) |
||||
|
# Copyright (C) 2012 Domsense srl (<http://www.domsense.com>) |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License as published |
||||
|
# by the Free Software Foundation, either version 3 of the License, or |
||||
|
# (at your option) any later version. |
||||
|
# |
||||
|
# This program is distributed in the hope that it will be useful, |
||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
# GNU Affero General Public License for more details. |
||||
|
# |
||||
|
# You should have received a copy of the GNU Affero General Public License |
||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
from . import controllers |
After Width: 128 | Height: 126 | Size: 3.5 KiB |
@ -0,0 +1,11 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
|
||||
|
<openerp> |
||||
|
<data> |
||||
|
<template id="assets_backend" name="web_export_view assets" inherit_id="web.assets_backend"> |
||||
|
<xpath expr="." position="inside"> |
||||
|
<script type="text/javascript" src="/web_export_view/static/src/js/web_export_view.js"></script> |
||||
|
</xpath> |
||||
|
</template> |
||||
|
</data> |
||||
|
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue