Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
11912 Vizualizări

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

Imagine profil
Abandonează
Cel mai bun răspuns

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.

Imagine profil
Abandonează
Cel mai bun răspuns

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

Imagine profil
Abandonează
Autor

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

Related Posts Răspunsuri Vizualizări Activitate
0
mar. 15
3895
12
apr. 23
25293
2
sept. 21
44190
2
oct. 15
17840
0
feb. 25
778