odoo17核心概念action4——client_actions.js

发布时间:2023年12月22日

这是action系列的第四篇文章, 主要介绍客户端动作。
在client_actions.js中一共定义了六种客户端动作,分别是


// 在右上角显示通知
registry.category("actions").add("display_notification", displayNotificationAction);
// 无效的动作,在odoo源代码中没有找到代码案例
registry.category("actions").add("invalid_action", InvalidAction);
// 重新加载整个页面,页面会闪烁
registry.category("actions").add("reload", reload);
// 返回主页
registry.category("actions").add("home", home);
// 重新加载上下文
registry.category("actions").add("reload_context", reloadContext);
// 软加载,其实就是异步加载,页面不会闪烁
registry.category("actions").add("soft_reload", softReload);

测试代码:
在view中建5个button,分别调用5个函数。

<header>
    <button type="object" name="reload" string="reload" />
    <button type="object" name="soft_reload" string="soft_reload" />
    <button type="object" name="home" string="home" />
    <button type="object" name="reload_context" string="reload_context" />
    <button type="object" name="notification" string="notification" />
</header>

python:


    def soft_reload(self):
        return {
            'type': 'ir.actions.client',
            'tag': 'soft_reload'
        }


    def reload(self):
        return {
            'type': 'ir.actions.client',
            'tag': 'reload'
        }

    def home(self):
        return {
            'type': 'ir.actions.client',
            'tag': 'home'
        }

    def reload_context(self):
        return {
            'type': 'ir.actions.client',
            'tag': 'reload_context'
        }

    def notification(self):
        message="hello,world!!"
        return {
            'type': 'ir.actions.client',
            'tag': 'display_notification',
            'params': {
                'message': message,
                'type': 'success',
                'sticky': False,
            }
        }


这里面比较有用的应该是soft_reload和display_notification。

文章来源:https://blog.csdn.net/jiafeitutu/article/details/135148360
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。