Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
1634 Visualizações
Hello, I would like to know how I could execute an automatic action from a button in my odoo form


Avatar
Cancelar
Melhor resposta

Hi,

Try this code:

def button_run_action(self):

        action_id = self.env.context.get('automatic_action_id')

        if action_id:

            action = self.env['ir.cron'].sudo().search([('id', '=', action_id)

            action.method_direct_trigger()


Hope it helps

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
1
mar. 21
4820
3
mar. 15
9960
0
ago. 23
1861
2
fev. 23
3381
1
dez. 22
5246