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

 

Imagine profil
Abandonează
Cel mai bun răspuns

Hi,

It is possible to call js function from the menu item. It is explained here in this Odoo doc.you can go through it,https://www.odoo.com/documentation/10.0/howtos/web.html

Then to call a python function from the Js ,

this._model = ...;
var x = this._model.call('my_method',[]).done(function(results){
  #do something;    
});


Thanks

Imagine profil
Abandonează