Skip to content

Commit

Permalink
[ADD] web_widget_open_tab (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
AungKoKoLin1997 authored Jan 29, 2024
1 parent 7f821ed commit 14c4454
Show file tree
Hide file tree
Showing 20 changed files with 865 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup/web_widget_open_tab/odoo/addons/web_widget_open_tab
6 changes: 6 additions & 0 deletions setup/web_widget_open_tab/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
97 changes: 97 additions & 0 deletions web_widget_open_tab/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
======================
Widget Open on new Tab
======================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:3d5b10615e0af803b6d6ac6d8f6ca5126b26c735349987eff5ac96cc5d26763e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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/15.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/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=15.0
:alt: Try me on Runboat

|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
<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).

You can also add open-tab field in tree views by selecting "Add Open Tab Field" field in
the ir.model record. When you do this, the open-tab field is added right after the name
field in the tree if the field exists, otherwise at the beginning of the tree.

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 to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_widget_open_tab%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
~~~~~~~

* Creu Blanca

Contributors
~~~~~~~~~~~~

* Enric Tobella <etobella@creublanca.es>
* Raf Ven <raf.ven@dynapps.be>
* `Quartile <https://www.quartile.co>`__:

* Aung Ko Ko Lin

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 <https://github.com/OCA/web/tree/15.0/web_widget_open_tab>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions web_widget_open_tab/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
20 changes: 20 additions & 0 deletions web_widget_open_tab/__manifest__.py
Original file line number Diff line number Diff line change
@@ -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": "15.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"],
"data": [
"views/ir_model_views.xml",
],
"assets": {
"web.assets_backend": ["web_widget_open_tab/static/src/js/widget.js"],
},
}
12 changes: 12 additions & 0 deletions web_widget_open_tab/demo/res_users_view.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="view_users_tree" model="ir.ui.view">
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_tree" />
<field name="arch" type="xml">
<field name="name" position="before">
<field name="id" widget="open_tab" />
</field>
</field>
</record>
</odoo>
31 changes: 31 additions & 0 deletions web_widget_open_tab/i18n/ca.po
Original file line number Diff line number Diff line change
@@ -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 <claudia.gargallo@qubiq.es>\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"
31 changes: 31 additions & 0 deletions web_widget_open_tab/i18n/de.po
Original file line number Diff line number Diff line change
@@ -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 <cornelius@clk-it.de>\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"
31 changes: 31 additions & 0 deletions web_widget_open_tab/i18n/es.po
Original file line number Diff line number Diff line change
@@ -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 <claudia.gargallo@qubiq.es>\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"
29 changes: 29 additions & 0 deletions web_widget_open_tab/i18n/pt_BR.po
Original file line number Diff line number Diff line change
@@ -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 ""
2 changes: 2 additions & 0 deletions web_widget_open_tab/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import ir_model
from . import ir_ui_view
10 changes: 10 additions & 0 deletions web_widget_open_tab/models/ir_model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2023 Quartile Limited
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import fields, models


class IrModel(models.Model):
_inherit = "ir.model"

add_open_tab_field = fields.Boolean(help="Adds open-tab field in list views.")
38 changes: 38 additions & 0 deletions web_widget_open_tab/models/ir_ui_view.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Copyright 2023 Quartile Limited
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from lxml import etree

from odoo import api, models


class Base(models.AbstractModel):
_inherit = "base"

@api.model
def _get_name_field(self, tree):
if tree.xpath('./field[@name="display_name"]'):
return tree.xpath('./field[@name="display_name"]')
return tree.xpath('./field[@name="name"]')

@api.model
def fields_view_get(
self, view_id=None, view_type="form", toolbar=False, submenu=False
):
res = super(Base, self).fields_view_get(
view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu
)
arch = etree.fromstring(res["arch"])
model = self.env["ir.model"]._get(self._name)
if view_type == "tree" and model.add_open_tab_field:
id_elem = """<field name="id" widget="open_tab" nolabel="1"/>"""
id_elem = etree.fromstring(id_elem)
tree = arch.xpath("//tree")[0]
name_field = self._get_name_field(tree)
if name_field:
tree = arch.xpath("//tree")[0]
tree.insert(name_field[0].getparent().index(name_field[0]) + 1, id_elem)
else:
tree.insert(0, id_elem)
res["arch"] = etree.tostring(arch)
return res
5 changes: 5 additions & 0 deletions web_widget_open_tab/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* Enric Tobella <etobella@creublanca.es>
* Raf Ven <raf.ven@dynapps.be>
* `Quartile <https://www.quartile.co>`__:

* Aung Ko Ko Lin
3 changes: 3 additions & 0 deletions web_widget_open_tab/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -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).
11 changes: 11 additions & 0 deletions web_widget_open_tab/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
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).

You can also add open-tab field in tree views by selecting "Add Open Tab Field" field in
the ir.model record. When you do this, the open-tab field is added right after the name
field in the tree if the field exists, otherwise at the beginning of the tree.
Binary file added web_widget_open_tab/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 14c4454

Please sign in to comment.