diff --git a/web_ir_actions_act_window_page/README.md b/web_ir_actions_act_window_page/README.md index c5c6351b..6818c586 100644 --- a/web_ir_actions_act_window_page/README.md +++ b/web_ir_actions_act_window_page/README.md @@ -1,3 +1,8 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 + +================== Client side paging ================== @@ -11,3 +16,53 @@ or:: which trigger the form's controller to page into the requested direction on the client side. + +A use case could be the case of a validation flow. As a developer, you set up a tree view with a domain on records to be validated. The user opens the first record in a form view and validates the record. The validation method returns the 'next' action type so that the browser window of the user is presented with the next record in the form view. + +Usage +===== + +See the 'Previous Partner' and 'Next Partner' buttons that this module's demo data adds to the partner form view. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/162/10.0 + +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. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Holger Brunn +* Stefan Rijnhart + +Do not contact contributors directly about support or help with technical issues. + +Maintainer +---------- + +.. 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. diff --git a/web_ir_actions_act_window_page/__manifest__.py b/web_ir_actions_act_window_page/__manifest__.py index ba6679a7..f7ead113 100644 --- a/web_ir_actions_act_window_page/__manifest__.py +++ b/web_ir_actions_act_window_page/__manifest__.py @@ -1,31 +1,23 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# This module copyright (C) 2013-2015 Therp BV (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +# coding: utf-8 +# © 2013-2015 Therp BV () +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) { "name": "Window actions for client side paging", "summary": ("Allows a developer to trigger a pager to show the previous " "or next next record in the form view"), - "version": "8.0.1.0.0", "author": "Therp BV,Odoo Community Association (OCA)", - "category": "Dependency", - "depends": ['web'], - 'data': ['view/qweb.xml'], - 'installable': False, + "version": "10.0.1.0.0", + "category": "Technical", + "depends": [ + 'web', + ], + 'data': [ + 'views/assets.xml', + ], + 'demo': [ + 'demo/demo_action.xml', + ], + 'installable': True, + 'license': 'AGPL-3', + 'url': 'https://github.com/oca/web', } diff --git a/web_ir_actions_act_window_page/demo/demo_action.xml b/web_ir_actions_act_window_page/demo/demo_action.xml new file mode 100644 index 00000000..094abbc0 --- /dev/null +++ b/web_ir_actions_act_window_page/demo/demo_action.xml @@ -0,0 +1,35 @@ + + + + + Previous partner + + action = {"type": "ir_actions_act_window_page_prev"} + + + + Next partner + + action = {"type": "ir_actions_act_window_page_next"} + + + + + res.partner + + +
+
+
+
+ +
diff --git a/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js b/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js index d8c03179..b9fbe4fd 100644 --- a/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js +++ b/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js @@ -1,44 +1,33 @@ -//-*- coding: utf-8 -*- -//############################################################################ -// -// OpenERP, Open Source Management Solution -// This module copyright (C) 2013-2015 Therp BV (). -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU Affero General Public License as -// published by the Free Software Foundation, either version 3 of the -// License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Affero General Public License for more details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . -// -//############################################################################ +// coding: utf-8 +// © 2013-2015 Therp BV () +// License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) +odoo.define('web.ir_actions_act_window_page', function(require) { -openerp.web_ir_actions_act_window_page = function(instance) -{ - instance.web.ActionManager.include({ + var ActionManager = require('web.ActionManager'); + ActionManager.include({ ir_actions_act_window_page_prev: function(action, options) { - if(this.inner_widget && this.inner_widget.active_view == 'form' && - this.inner_widget.views[this.inner_widget.active_view]) + if(this.inner_widget && this.inner_widget.active_view.type == 'form' && + this.inner_widget.active_view) { - this.inner_widget.views[this.inner_widget.active_view] - .controller.execute_pager_action('previous'); + this.inner_widget.active_view.controller.pager.previous(); + } + if(options && options.on_close) + { + options.on_close(); } }, ir_actions_act_window_page_next: function(action, options) { - if(this.inner_widget && this.inner_widget.active_view == 'form' && - this.inner_widget.views[this.inner_widget.active_view]) + if(this.inner_widget && this.inner_widget.active_view.type == 'form' && + this.inner_widget.active_view) + { + this.inner_widget.active_view.controller.pager.next(); + } + if(options && options.on_close) { - this.inner_widget.views[this.inner_widget.active_view] - .controller.execute_pager_action('next'); + options.on_close(); } }, }); -} +}); diff --git a/web_ir_actions_act_window_page/view/qweb.xml b/web_ir_actions_act_window_page/view/qweb.xml deleted file mode 100644 index d3563bb3..00000000 --- a/web_ir_actions_act_window_page/view/qweb.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - diff --git a/web_ir_actions_act_window_page/views/assets.xml b/web_ir_actions_act_window_page/views/assets.xml new file mode 100644 index 00000000..f045d63a --- /dev/null +++ b/web_ir_actions_act_window_page/views/assets.xml @@ -0,0 +1,11 @@ + + + +