[MIG] web_ir_actions_act_window_message: Migration to 16.0

pull/2389/head
miguels73 2023-01-16 09:28:50 +01:00
parent 82bb9729d8
commit aebb85fd51
3 changed files with 23 additions and 10 deletions

View File

@ -2,7 +2,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Client side message boxes",
"version": "15.0.1.0.0",
"version": "16.0.1.0.0",
"author": "Therp BV, " "ACSONE SA/NV, " "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/web",
"license": "AGPL-3",

View File

@ -3,6 +3,7 @@
* Benjamin Willig (ACSONE SA/NV) <benjamin.willig@acsone.eu>
* Ioan Galan (Studio73) <ioan@studio73.es>
* Abraham Anes (Studio73) <abraham@studio73.es>
* Miguel Gandia (Studio73) <miguel@studio73.es>
* `DynApps NV <https://www.dynapps.be>`_:
* Koen Loodts

View File

@ -1,7 +1,25 @@
/** @odoo-module **/
import {registry} from "@web/core/registry";
import Dialog from "web.Dialog";
import {registry} from "@web/core/registry";
function _refreshWidget(env) {
const controller = env.services.action.currentController;
const props = controller.props;
const view = controller.view;
// LEGACY CODE COMPATIBILITY: remove when controllers will be written in owl
if (view.isLegacy) {
// Case where a legacy view is reloaded via the view switcher
const {__legacy_widget__} = controller.getLocalState();
const params = {};
if ("resId" in props) {
params.currentId = props.resId;
}
return __legacy_widget__.reload(params);
}
// END LEGACY CODE COMPATIBILITY
env.services.action.switchView(props.type, {resId: props.resId});
}
function ir_actions_act_window_message_get_buttons(env, action, close_func) {
// Return an array of button definitions from action
@ -22,11 +40,7 @@ function ir_actions_act_window_message_get_buttons(env, action, close_func) {
if (_.isObject(result)) {
return env.services.action.doAction(result);
}
// Always refresh the view after the action
// ex: action updates a status
const {__legacy_widget__} =
env.services.action.currentController.getLocalState();
__legacy_widget__.reload({});
_refreshWidget(env);
});
} else {
return env.services.action.doAction(button_definition);
@ -44,9 +58,7 @@ async function _executeWindowMessageAction({env, action}) {
text: action.close_button_title || env._t("Close"),
click: function () {
// Refresh the view before closing the dialog
const {__legacy_widget__} =
env.services.action.currentController.getLocalState();
__legacy_widget__.reload({});
_refreshWidget(env);
this.close();
},
classes: "btn-default",