diff --git a/setup/web_widget_open_tab/odoo/addons/web_widget_open_tab b/setup/web_widget_open_tab/odoo/addons/web_widget_open_tab new file mode 120000 index 000000000..8d41af8dc --- /dev/null +++ b/setup/web_widget_open_tab/odoo/addons/web_widget_open_tab @@ -0,0 +1 @@ +../../../../web_widget_open_tab \ No newline at end of file diff --git a/setup/web_widget_open_tab/setup.py b/setup/web_widget_open_tab/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/web_widget_open_tab/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/web_widget_open_tab/README.rst b/web_widget_open_tab/README.rst new file mode 100644 index 000000000..b7e716d7b --- /dev/null +++ b/web_widget_open_tab/README.rst @@ -0,0 +1,87 @@ +====================== +Widget Open on new Tab +====================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github + :target: https://github.com/OCA/web/tree/16.0/web_widget_open_tab + :alt: OCA/web +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_widget_open_tab + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/162/15.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This addon introduces a new widget. +When added to a field in a tree view, the field appears as a button which opens the record in a new tab. +When clicking on the line (but not on the button), the record is opened in the same window (as in native Odoo). + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Edit the tree view and add the widget as the first field, usually, we should use: +.. code-block:: xml + + + +You can open the record in a new tab when clicking with the mouse wheel on the external link icon. +On a usual click the record will be opened without changes (keeping the breadcrumbs). + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Creu Blanca + +Contributors +~~~~~~~~~~~~ + +* Enric Tobella +* Raf Ven + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +This module is part of the `OCA/web `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/web_widget_open_tab/__init__.py b/web_widget_open_tab/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/web_widget_open_tab/__manifest__.py b/web_widget_open_tab/__manifest__.py new file mode 100644 index 000000000..8ad5863f6 --- /dev/null +++ b/web_widget_open_tab/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2019-2020 Creu Blanca +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Widget Open on new Tab", + "summary": """ + Allow to open record from trees on new tab from tree views""", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "author": "Creu Blanca,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/web", + "depends": ["web"], + "demo": ["demo/res_users_view.xml"], + "assets": { + "web.assets_backend": [ + "web_widget_open_tab/static/src/xml/open_tab_widget.xml", + "web_widget_open_tab/static/src/js/open_tab_widget.esm.js", + ], + }, +} diff --git a/web_widget_open_tab/demo/res_users_view.xml b/web_widget_open_tab/demo/res_users_view.xml new file mode 100644 index 000000000..3d701f0a9 --- /dev/null +++ b/web_widget_open_tab/demo/res_users_view.xml @@ -0,0 +1,12 @@ + + + + res.users + + + + + + + + diff --git a/web_widget_open_tab/i18n/ca.po b/web_widget_open_tab/i18n/ca.po new file mode 100644 index 000000000..0a6629e87 --- /dev/null +++ b/web_widget_open_tab/i18n/ca.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_open_tab +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-02-17 13:45+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:47 +#, python-format +msgid "Click in order to open on new tab" +msgstr "Feu clic per obrir la pestanya nova" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:48 +#, python-format +msgid "Widget" +msgstr "Widget" diff --git a/web_widget_open_tab/i18n/de.po b/web_widget_open_tab/i18n/de.po new file mode 100644 index 000000000..05a8fec83 --- /dev/null +++ b/web_widget_open_tab/i18n/de.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_open_tab +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-10-13 20:46+0000\n" +"Last-Translator: Corneliuus \n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:0 +#, python-format +msgid "Click in order to open on new tab" +msgstr "Anklicken, um in einem neuen Tab zu öffnen" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:0 +#, python-format +msgid "Widget" +msgstr "Widget" diff --git a/web_widget_open_tab/i18n/es.po b/web_widget_open_tab/i18n/es.po new file mode 100644 index 000000000..1e2c4e388 --- /dev/null +++ b/web_widget_open_tab/i18n/es.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_open_tab +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-09-16 14:00+0000\n" +"Last-Translator: claudiagn \n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:47 +#, python-format +msgid "Click in order to open on new tab" +msgstr "Clica para poder abrir una nueva pestaña" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:48 +#, python-format +msgid "Widget" +msgstr "Widget" diff --git a/web_widget_open_tab/i18n/pt_BR.po b/web_widget_open_tab/i18n/pt_BR.po new file mode 100644 index 000000000..d780bb0e4 --- /dev/null +++ b/web_widget_open_tab/i18n/pt_BR.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_open_tab +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:47 +#, python-format +msgid "Click in order to open on new tab" +msgstr "" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:48 +#, python-format +msgid "Widget" +msgstr "" diff --git a/web_widget_open_tab/i18n/web_widget_open_tab.pot b/web_widget_open_tab/i18n/web_widget_open_tab.pot new file mode 100644 index 000000000..631f51b2a --- /dev/null +++ b/web_widget_open_tab/i18n/web_widget_open_tab.pot @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_widget_open_tab +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:0 +#, python-format +msgid "Click in order to open on new tab" +msgstr "" + +#. module: web_widget_open_tab +#. openerp-web +#: code:addons/web_widget_open_tab/static/src/js/widget.js:0 +#, python-format +msgid "Widget" +msgstr "" diff --git a/web_widget_open_tab/readme/CONTRIBUTORS.rst b/web_widget_open_tab/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..fa8a6cdea --- /dev/null +++ b/web_widget_open_tab/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* Enric Tobella +* Raf Ven +* Dhara Solanki diff --git a/web_widget_open_tab/readme/DESCRIPTION.rst b/web_widget_open_tab/readme/DESCRIPTION.rst new file mode 100644 index 000000000..c202ca5be --- /dev/null +++ b/web_widget_open_tab/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This addon introduces a new widget. +When added to a field in a tree view, the field appears as a button which opens the record in a new tab. +When clicking on the line (but not on the button), the record is opened in the same window (as in native Odoo). diff --git a/web_widget_open_tab/readme/USAGE.rst b/web_widget_open_tab/readme/USAGE.rst new file mode 100644 index 000000000..a47bb4fd0 --- /dev/null +++ b/web_widget_open_tab/readme/USAGE.rst @@ -0,0 +1,7 @@ +Edit the tree view and add the widget as the first field, usually, we should use: +.. code-block:: xml + + + +You can open the record in a new tab when clicking with the mouse wheel on the external link icon. +On a usual click the record will be opened without changes (keeping the breadcrumbs). diff --git a/web_widget_open_tab/static/description/icon.png b/web_widget_open_tab/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/web_widget_open_tab/static/description/icon.png differ diff --git a/web_widget_open_tab/static/description/index.html b/web_widget_open_tab/static/description/index.html new file mode 100644 index 000000000..2526d489b --- /dev/null +++ b/web_widget_open_tab/static/description/index.html @@ -0,0 +1,432 @@ + + + + + + +Widget Open on new Tab + + + +
+

Widget Open on new Tab

+ + +

Beta License: AGPL-3 OCA/web Translate me on Weblate Try me on Runbot

+

This addon introduces a new widget. +When added to a field in a tree view, the field appears as a button which opens the record in a new tab. +When clicking on the line (but not on the button), the record is opened in the same window (as in native Odoo).

+

Table of contents

+ +
+

Usage

+

Edit the tree view and add the widget as the first field, usually, we should use: +.. code-block:: xml

+
+<field name=”id” widget=”open_tab”/>
+

You can open the record in a new tab when clicking with the mouse wheel on the external link icon. +On a usual click the record will be opened without changes (keeping the breadcrumbs).

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub 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.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Creu Blanca
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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.

+

This module is part of the OCA/web project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/web_widget_open_tab/static/src/js/open_tab_widget.esm.js b/web_widget_open_tab/static/src/js/open_tab_widget.esm.js new file mode 100644 index 000000000..1bb997362 --- /dev/null +++ b/web_widget_open_tab/static/src/js/open_tab_widget.esm.js @@ -0,0 +1,45 @@ +/** @odoo-module */ + +import {registry} from "@web/core/registry"; +import {standardFieldProps} from "@web/views/fields/standard_field_props"; +import {_lt} from "@web/core/l10n/translation"; +import {Component} from "@odoo/owl"; + +export class OpenTabWidget extends Component { + openNewTab(ev) { + ev.stopPropagation(); + } + _getReference() { + var url = window.location.href; + var searchParams = new URLSearchParams(url.split("#")[1]); + searchParams.set("view_type", "form"); + searchParams.set("id", this.props.value); + if ( + !searchParams.has("model") || + searchParams.get("model") !== this.props.record.resModel + ) { + searchParams.set("model", this.props.record.resModel); + searchParams.delete("action"); + } + return url.split("#")[0] + "#" + searchParams.toString(); + } + loadAttrs(ev) { + $(ev.target).tooltip(); + } +} + +OpenTabWidget.template = "web_widget_open_tab.openTab"; +OpenTabWidget.props = { + ...standardFieldProps, + title: {type: String, optional: true}, +}; + +OpenTabWidget.displayName = _lt("Open Tab"); +OpenTabWidget.supportedTypes = ["integer"]; +OpenTabWidget.extractProps = () => { + return { + title: _lt("Click to open on new tab"), + }; +}; + +registry.category("fields").add("open_tab", OpenTabWidget); diff --git a/web_widget_open_tab/static/src/xml/open_tab_widget.xml b/web_widget_open_tab/static/src/xml/open_tab_widget.xml new file mode 100644 index 000000000..b4e419784 --- /dev/null +++ b/web_widget_open_tab/static/src/xml/open_tab_widget.xml @@ -0,0 +1,14 @@ + +