Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
5236 Visualizzazioni

I created a back button for a custom module that executes this code:

action = {
'type': 'ir.actions.client', 'tag': 'history_back',
}

It worked in v11, but no longer works in v12. Anyone know a reason this wouldn't work after the upgrade, or a different way to create a back/exit button for my page?

Avatar
Abbandona

I tried using that tag also. It doesn't work anymore with V13 either.

Autore Risposta migliore

While I haven't been able to figure out why the action isn't working, I did find a way around it by using this:

action = {
'type': 'ir.actions.act_window',
'view_type': 'form',
'view_mode': 'form',
'view_id': my_view,
'res_model': 'my_model',
'target': 'main',
'res_id': id,
}


It isn't perfect, but it solved by problem.

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
1
mar 21
4021
3
mar 15
8922
1
mar 18
9869
2
feb 23
2466
2
ott 20
3608