diff --git a/web_ir_actions_act_view_reload/README.rst b/web_ir_actions_act_view_reload/README.rst index 01bed1e8..aafe7361 100644 --- a/web_ir_actions_act_view_reload/README.rst +++ b/web_ir_actions_act_view_reload/README.rst @@ -1,13 +1,37 @@ -.. image:: https://www.gnu.org/graphics/lgplv3-147x51.png - :target: https://www.gnu.org/licenses/lgpl-3.0.en.html - :alt: License: LGPL-v3 - -========================= -Web Actions Window Reload -========================= +======================= +Web Actions View Reload +======================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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/12.0/web_ir_actions_act_view_reload + :alt: OCA/web +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_ir_actions_act_view_reload + :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/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| This module provides a way to trigger reload of the current window on ActionManager +**Table of contents** + +.. contents:: + :local: + Usage ===== @@ -25,31 +49,41 @@ To use this functionality you need to return following action: 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 smash it by providing detailed and welcomed feedback. +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 +* Brainbean Apps Contributors ------------- +~~~~~~~~~~~~ * Petar Najman +* Alexey Pelykh -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://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 https://odoo-community.org. +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_view_reload/__manifest__.py b/web_ir_actions_act_view_reload/__manifest__.py index 263b2768..4ced2aa8 100644 --- a/web_ir_actions_act_view_reload/__manifest__.py +++ b/web_ir_actions_act_view_reload/__manifest__.py @@ -1,15 +1,20 @@ # Copyright 2017 - 2018 Modoolar +# Copyright 2018 Brainbean Apps # License LGPLv3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.en.html). { "name": "Web Actions View Reload", "summary": "Enables reload of the current view via ActionManager", "category": "Web", - "version": "11.0.1.0.0", + "version": "12.0.1.0.0", "license": "LGPL-3", - "author": "Modoolar, Odoo Community Association (OCA)", + "author": "Modoolar, " + "Brainbean Apps, " + "Odoo Community Association (OCA)", "website": "https://github.com/OCA/web/", - "depends": ["web"], + "depends": [ + "web" + ], "data": [ "views/web_ir_actions_act_view_reload.xml", ], diff --git a/web_ir_actions_act_view_reload/readme/CONTRIBUTORS.rst b/web_ir_actions_act_view_reload/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..5f345324 --- /dev/null +++ b/web_ir_actions_act_view_reload/readme/CONTRIBUTORS.rst @@ -0,0 +1,2 @@ +* Petar Najman +* Alexey Pelykh diff --git a/web_ir_actions_act_view_reload/readme/DESCRIPTION.rst b/web_ir_actions_act_view_reload/readme/DESCRIPTION.rst new file mode 100644 index 00000000..80c4d551 --- /dev/null +++ b/web_ir_actions_act_view_reload/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module provides a way to trigger reload of the current window on ActionManager diff --git a/web_ir_actions_act_view_reload/readme/USAGE.rst b/web_ir_actions_act_view_reload/readme/USAGE.rst new file mode 100644 index 00000000..de630a81 --- /dev/null +++ b/web_ir_actions_act_view_reload/readme/USAGE.rst @@ -0,0 +1,10 @@ +To use this functionality you need to return following action: + +.. code-block:: python + + @api.multi + def foo(): + self.ensure_one() + return { + 'type': 'ir.actions.act_view_reload', + } diff --git a/web_ir_actions_act_view_reload/static/description/index.html b/web_ir_actions_act_view_reload/static/description/index.html new file mode 100644 index 00000000..18e2f312 --- /dev/null +++ b/web_ir_actions_act_view_reload/static/description/index.html @@ -0,0 +1,434 @@ + + + + + + +Web Actions View Reload + + + +
+

Web Actions View Reload

+ + +

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

+

This module provides a way to trigger reload of the current window on ActionManager

+

Table of contents

+ +
+

Usage

+

To use this functionality you need to return following action:

+
+@api.multi
+def foo():
+   self.ensure_one()
+   return {
+      'type': 'ir.actions.act_view_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
  • +
  • Brainbean Apps
  • +
+
+ +
+

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_view_reload/static/src/js/web_ir_actions_act_view_reload.js b/web_ir_actions_act_view_reload/static/src/js/web_ir_actions_act_view_reload.js index 9d85a531..62f2645c 100644 --- a/web_ir_actions_act_view_reload/static/src/js/web_ir_actions_act_view_reload.js +++ b/web_ir_actions_act_view_reload/static/src/js/web_ir_actions_act_view_reload.js @@ -1,16 +1,38 @@ // Copyright 2017 - 2018 Modoolar +// Copyright 2018 Modoolar // License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). odoo.define('web_ir_actions_act_view_reload.ir_actions_act_view_reload', function (require) { -"use strict"; + "use strict"; var ActionManager = require('web.ActionManager'); ActionManager.include({ - ir_actions_act_view_reload: function (action, options) { - if (this.inner_widget && this.inner_widget.active_view && this.inner_widget.active_view.controller) - this.inner_widget.active_view.controller.reload(); + + /** + * Intersept action handling to detect extra action type + * @override + */ + _handleAction: function (action, options) { + if (action.type === 'ir.actions.act_view_reload') { + return this._executeReloadAction(action, options); + } + + return this._super.apply(this, arguments); + }, + + /** + * Handle 'ir.actions.act_view_reload' action + * @returns {$.Promise} + */ + _executeReloadAction: function () { + var controller = this.getCurrentController(); + if (controller && controller.widget) { + controller.widget.reload(); + } + return $.when(); - } + }, + }); }); diff --git a/web_ir_actions_act_view_reload/views/web_ir_actions_act_view_reload.xml b/web_ir_actions_act_view_reload/views/web_ir_actions_act_view_reload.xml index 2a1c0364..6013524e 100644 --- a/web_ir_actions_act_view_reload/views/web_ir_actions_act_view_reload.xml +++ b/web_ir_actions_act_view_reload/views/web_ir_actions_act_view_reload.xml @@ -1,12 +1,12 @@