mirror of https://github.com/OCA/web.git
[MIG] web_ir_actions_act_window_message: Migration to 16.0
parent
82bb9729d8
commit
aebb85fd51
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue