这是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。