Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
11930 Lượt xem

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)?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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

Ảnh đại diện
Huỷ bỏ
Tác giả

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) :)

Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 3 15
3919
12
thg 4 23
25316
2
thg 9 21
44221
2
thg 10 15
17867
0
thg 2 25
789