Hello,
Can someone tell me how to do this?
Thank you so much for your help!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello,
Can someone tell me how to do this?
Thank you so much for your help!
server_action = env['ir.actions.server'].search([('name','=','Second Server Action')])
if server_action:
server_action.run()
Thanks for solution Ray, massive help.
To add further use case to this solution, we can specify context to run on specific records (using for loop for example) like this: (I prefer to use action id instead of name, since name can be changed easily)
server_action = env['ir.actions.server'].search([('id','=', your_server_action_id)])
if server_action:
for record in records:
server_action.with_context(active_id = record.id, active_model = 'your_model_name').run()
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
0
mar 23
|
1214 | ||
|
0
jul 21
|
3890 | ||
|
1
ene 21
|
4379 | ||
|
1
ene 19
|
4616 | ||
|
1
ene 18
|
4216 |
Thank you Ray!
In case I have to give a parameter, do I put it between the parenthesis of ".run()"?