Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
6074 Vues

Added a Button in Odoo POS

In button click action how to change url / call controller like

        http://localhost:8069/pos/web#action=pos.ui

       to http://localhost:8069/pos/event

Anyone help me to resolve in this?


Avatar
Ignorer
Meilleure réponse

Type the below code in your function


window.open("www.google.com");


Then a new window will open and the page will be loaded.

If you want this to done in a button click then,


$('#stocks').click(function(){

    window.open("www.google.com");

}

in the above code stocks is the name of the button which is created in the xml view. all the other must the the same

Avatar
Ignorer
Publications associées Réponses Vues Activité
1
juil. 19
9615
3
juil. 25
16819
0
déc. 18
2785
1
nov. 24
1086
4
oct. 24
3316