From cb410c26c8ae5c1663ecfbad4ad22f4dacb9aba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20D=C3=ADaz?= Date: Tue, 9 Apr 2019 02:41:06 +0200 Subject: [PATCH] [11.0][IMP] web_export_view: Split readme --- web_export_view/readme/CONFIGURATION.rst | 2 ++ web_export_view/readme/CONTRIBUTORS.rst | 9 +++++++++ web_export_view/readme/DESCRIPTION.rst | 11 +++++++++++ web_export_view/readme/ROADMAP.rst | 9 +++++++++ web_export_view/readme/USAGE.rst | 3 +++ 5 files changed, 34 insertions(+) create mode 100644 web_export_view/readme/CONFIGURATION.rst create mode 100644 web_export_view/readme/CONTRIBUTORS.rst create mode 100644 web_export_view/readme/DESCRIPTION.rst create mode 100644 web_export_view/readme/ROADMAP.rst create mode 100644 web_export_view/readme/USAGE.rst diff --git a/web_export_view/readme/CONFIGURATION.rst b/web_export_view/readme/CONFIGURATION.rst new file mode 100644 index 00000000..3ae2e649 --- /dev/null +++ b/web_export_view/readme/CONFIGURATION.rst @@ -0,0 +1,2 @@ +If we wanted to disallow users to use the features provided by this module, we +can add them to the group *Disallow Export View Data to Excel*. \ No newline at end of file diff --git a/web_export_view/readme/CONTRIBUTORS.rst b/web_export_view/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..67e4e410 --- /dev/null +++ b/web_export_view/readme/CONTRIBUTORS.rst @@ -0,0 +1,9 @@ +* Henry Zhou (MAXodoo) +* Rodney +* Simone Orsi +* Lorenzo Battistini +* Stefan Rijnhart +* Leonardo Pistone +* Jose Maria Bernet +* David Vidal +* Alexandre Díaz diff --git a/web_export_view/readme/DESCRIPTION.rst b/web_export_view/readme/DESCRIPTION.rst new file mode 100644 index 00000000..3cd7aa3e --- /dev/null +++ b/web_export_view/readme/DESCRIPTION.rst @@ -0,0 +1,11 @@ +One of the best Odoo'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. diff --git a/web_export_view/readme/ROADMAP.rst b/web_export_view/readme/ROADMAP.rst new file mode 100644 index 00000000..05d17110 --- /dev/null +++ b/web_export_view/readme/ROADMAP.rst @@ -0,0 +1,9 @@ +Pedro M. Baeza (pedro.baeza@tecnativa.com): +When you have groups, they are not exported to Excel. It would be desirable to have this option. +One of the problems with this module is that you can't export data from a view with mode="tree". +Changing the approach to have the button always visible (we should relocate it also to another place, +as the current location is not visible for these views), and digging correctly in the DOM elements +for this view (very similar to the normal tree view one) will do the trick. This will also help users +to locate the feature, as it's hidden now by default and users don't think about selecting records. +The behavior will be: nothing selected > you export all (including groups). +Something or all selected: export the selection. diff --git a/web_export_view/readme/USAGE.rst b/web_export_view/readme/USAGE.rst new file mode 100644 index 00000000..45613441 --- /dev/null +++ b/web_export_view/readme/USAGE.rst @@ -0,0 +1,3 @@ +After you installed it, you'll find an additional link 'Export current view' +right on the sidebar. By clicking on it you'll get a XLS file contains +the same data of the tree view you are looking at, headers included.