diff --git a/setup/web_ir_actions_act_multi/odoo/addons/web_ir_actions_act_multi b/setup/web_ir_actions_act_multi/odoo/addons/web_ir_actions_act_multi new file mode 120000 index 000000000000..70dacab2198a --- /dev/null +++ b/setup/web_ir_actions_act_multi/odoo/addons/web_ir_actions_act_multi @@ -0,0 +1 @@ +../../../../web_ir_actions_act_multi \ No newline at end of file diff --git a/setup/web_ir_actions_act_multi/setup.py b/setup/web_ir_actions_act_multi/setup.py new file mode 100644 index 000000000000..28c57bb64031 --- /dev/null +++ b/setup/web_ir_actions_act_multi/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/web_ir_actions_act_multi/README.rst b/web_ir_actions_act_multi/README.rst new file mode 100644 index 000000000000..69be81f450bf --- /dev/null +++ b/web_ir_actions_act_multi/README.rst @@ -0,0 +1,98 @@ +================= +Web Actions Multi +================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-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_ir_actions_act_multi + :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_ir_actions_act_multi + :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 module provides a way to trigger more than one action on ActionManager + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To use this functionality you need to return following action with list of actions to execute: + +.. code-block:: python + + def foo(self): + self.ensure_one() + return { + 'type': 'ir.actions.act_multi', + 'actions': [ + {'type': 'ir.actions.act_window_close'}, + {'type': 'ir.actions.client', 'tag': 'reload'}, + ] + } + +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 +~~~~~~~ + +* Modoolar +* CorporateHub + +Contributors +~~~~~~~~~~~~ + +* Petar Najman +* Mladen Meseldzija +* `CorporateHub `__ + + * Alexey Pelykh + +* Manuel Calero - Tecnativa +* Matias Peralta, Juan Rivero - Adhoc + +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_ir_actions_act_multi/__init__.py b/web_ir_actions_act_multi/__init__.py new file mode 100644 index 000000000000..0650744f6bc6 --- /dev/null +++ b/web_ir_actions_act_multi/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/web_ir_actions_act_multi/__manifest__.py b/web_ir_actions_act_multi/__manifest__.py new file mode 100644 index 000000000000..581644a8d189 --- /dev/null +++ b/web_ir_actions_act_multi/__manifest__.py @@ -0,0 +1,23 @@ +# Copyright 2017 - 2018 Modoolar +# Copyright 2018 Brainbean Apps +# Copyright 2020 Manuel Calero +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License LGPLv3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.en.html). + +{ + "name": "Web Actions Multi", + "summary": "Enables triggering of more than one action on ActionManager", + "category": "Web", + "version": "16.0.1.0.0", + "license": "LGPL-3", + "author": "Modoolar, " "CorporateHub, " "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/web", + "depends": ["web"], + "data": ["security/ir.model.access.csv"], + "assets": { + "web.assets_backend": [ + "web_ir_actions_act_multi/static/src/**/*.esm.js", + ], + }, + "installable": True, +} diff --git a/web_ir_actions_act_multi/i18n/es.po b/web_ir_actions_act_multi/i18n/es.po new file mode 100644 index 000000000000..cdd0dca4a857 --- /dev/null +++ b/web_ir_actions_act_multi/i18n/es.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\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" diff --git a/web_ir_actions_act_multi/i18n/web_ir_actions_act_multi.pot b/web_ir_actions_act_multi/i18n/web_ir_actions_act_multi.pot new file mode 100644 index 000000000000..3c9eff4a0536 --- /dev/null +++ b/web_ir_actions_act_multi/i18n/web_ir_actions_act_multi.pot @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_ir_actions_act_multi +# +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_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__help +msgid "Action Description" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model,name:web_ir_actions_act_multi.model_ir_actions_act_multi +msgid "Action Mulit" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__type +msgid "Action Type" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id +msgid "Binding Model" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_type +msgid "Binding Type" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_view_types +msgid "Binding View Types" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_uid +msgid "Created by" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_date +msgid "Created on" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__display_name +msgid "Display Name" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__xml_id +msgid "External ID" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__id +msgid "ID" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_date +msgid "Last Updated on" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__name +msgid "Name" +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__help +msgid "" +"Optional help text for the users with a description of the target view, such" +" as its usage and purpose." +msgstr "" + +#. module: web_ir_actions_act_multi +#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id +msgid "" +"Setting a value makes this action available in the sidebar for the given " +"model." +msgstr "" diff --git a/web_ir_actions_act_multi/i18n/zh_CN.po b/web_ir_actions_act_multi/i18n/zh_CN.po new file mode 100644 index 000000000000..4159be77e050 --- /dev/null +++ b/web_ir_actions_act_multi/i18n/zh_CN.po @@ -0,0 +1,14 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# +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: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" diff --git a/web_ir_actions_act_multi/models/__init__.py b/web_ir_actions_act_multi/models/__init__.py new file mode 100644 index 000000000000..16285e5e135d --- /dev/null +++ b/web_ir_actions_act_multi/models/__init__.py @@ -0,0 +1 @@ +from . import ir_actions diff --git a/web_ir_actions_act_multi/models/ir_actions.py b/web_ir_actions_act_multi/models/ir_actions.py new file mode 100644 index 000000000000..123d625e0ade --- /dev/null +++ b/web_ir_actions_act_multi/models/ir_actions.py @@ -0,0 +1,15 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class IrActionsActMulti(models.Model): + _name = "ir.actions.act_multi" + _description = "Action Mulit" + _inherit = "ir.actions.actions" + _table = "ir_actions" + + type = fields.Char(default="ir.actions.act_multi") + + def _get_readable_fields(self): + return super()._get_readable_fields() | {"actions"} diff --git a/web_ir_actions_act_multi/readme/CONTRIBUTORS.rst b/web_ir_actions_act_multi/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000000..0fe7835e029f --- /dev/null +++ b/web_ir_actions_act_multi/readme/CONTRIBUTORS.rst @@ -0,0 +1,8 @@ +* Petar Najman +* Mladen Meseldzija +* `CorporateHub `__ + + * Alexey Pelykh + +* Manuel Calero - Tecnativa +* Matias Peralta, Juan Rivero - Adhoc diff --git a/web_ir_actions_act_multi/readme/DESCRIPTION.rst b/web_ir_actions_act_multi/readme/DESCRIPTION.rst new file mode 100644 index 000000000000..6e6a6c791bed --- /dev/null +++ b/web_ir_actions_act_multi/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module provides a way to trigger more than one action on ActionManager diff --git a/web_ir_actions_act_multi/readme/USAGE.rst b/web_ir_actions_act_multi/readme/USAGE.rst new file mode 100644 index 000000000000..eadf01451fa7 --- /dev/null +++ b/web_ir_actions_act_multi/readme/USAGE.rst @@ -0,0 +1,13 @@ +To use this functionality you need to return following action with list of actions to execute: + +.. code-block:: python + + def foo(self): + self.ensure_one() + return { + 'type': 'ir.actions.act_multi', + 'actions': [ + {'type': 'ir.actions.act_window_close'}, + {'type': 'ir.actions.client', 'tag': 'reload'}, + ] + } diff --git a/web_ir_actions_act_multi/security/ir.model.access.csv b/web_ir_actions_act_multi/security/ir.model.access.csv new file mode 100644 index 000000000000..b0a872960e6b --- /dev/null +++ b/web_ir_actions_act_multi/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +crud_ir_actions_act_multi,access_ir_actions_act_multi,model_ir_actions_act_multi,,1,1,1,1 diff --git a/web_ir_actions_act_multi/static/description/icon.png b/web_ir_actions_act_multi/static/description/icon.png new file mode 100644 index 000000000000..3a0328b516c4 Binary files /dev/null and b/web_ir_actions_act_multi/static/description/icon.png differ diff --git a/web_ir_actions_act_multi/static/description/index.html b/web_ir_actions_act_multi/static/description/index.html new file mode 100644 index 000000000000..78cac1418c5d --- /dev/null +++ b/web_ir_actions_act_multi/static/description/index.html @@ -0,0 +1,443 @@ + + + + + + +Web Actions Multi + + + +
+

Web Actions Multi

+ + +

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

+

This module provides a way to trigger more than one action on ActionManager

+

Table of contents

+ +
+

Usage

+

To use this functionality you need to return following action with list of actions to execute:

+
+def foo(self):
+   self.ensure_one()
+   return {
+      'type': 'ir.actions.act_multi',
+      'actions': [
+          {'type': 'ir.actions.act_window_close'},
+          {'type': 'ir.actions.client', 'tag': 'reload'},
+      ]
+   }
+
+
+
+

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

+
    +
  • Modoolar
  • +
  • CorporateHub
  • +
+
+
+

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_ir_actions_act_multi/static/src/js/web_ir_actions_act_multi.esm.js b/web_ir_actions_act_multi/static/src/js/web_ir_actions_act_multi.esm.js new file mode 100644 index 000000000000..74bad577e799 --- /dev/null +++ b/web_ir_actions_act_multi/static/src/js/web_ir_actions_act_multi.esm.js @@ -0,0 +1,23 @@ +/** @odoo-module **/ + +import {registry} from "@web/core/registry"; + +/** + * Handle 'ir.actions.act_multi' action + * @param {object} action see _handleAction() parameters + * @returns {$.Promise} + */ + +async function executeMultiAction({env, action}) { + return action.actions + .map((item) => { + return () => { + return env.services.action.doAction(item); + }; + }) + .reduce((prev, cur) => { + return prev.then(cur); + }, Promise.resolve()); +} + +registry.category("action_handlers").add("ir.actions.act_multi", executeMultiAction);