跳至内容
菜单
此问题已终结
2 回复
12020 查看

How can I have OpenERP trigger an action (Like starting a wizard or opening a view), from within a function (For example a button on a form view)?

形象
丢弃
最佳答案

You can return a dictionary containing keys corresponding to an ir.action.act_window:

  • 'type': "ir.actions.act_window"
  • 'res_model': the model for which you want to open a view (can be a TransientModel for a wizard)
  • 'view_type': "form"
  • 'view_mode': "form"
  • 'target': use "new" to open a new windo
  • 'context': the context of your function

You will find numerous examples of this in the various official addons. Look for the string "ir.action.act_window" in Python source files.

形象
丢弃
最佳答案

there is a typo in the example, action -> actions : 'type':'ir.actions.act_window'

形象
丢弃
编写者

Thanks very much, I have updated Alexandre's answer. Just so you know, it would have been better if you put this as a comment on the original answer (For the sake of clarity for future users) :)

相关帖文 回复 查看 活动
0
3月 15
4060
12
4月 23
25437
2
9月 21
44384
2
10月 15
17950
0
2月 25
906