콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
11979 화면

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
4015
12
4월 23
25409
2
9월 21
44338
2
10월 15
17915
0
2월 25
880