Skip to Content
Menu
This question has been flagged
1 Odpoveď
1205 Zobrazenia

Hi good day everyone!


I just want to ask how can I call a form view from button with js function in odoo 10.


Thank you very in advance for your answers.


Sincerely yours,

Jhonnel 

Avatar
Zrušiť
Best Answer

Hi,

You can call the do_action in your button function to display the form view; see an example below.

this.do_action({

            type: 'ir.actions.act_window',

            Name: sale order,

            res_model: sale.order',

    res_id: 1,

            view_type: 'form',

            view_mode: 'form',

            target: 'new',

        })


Hope it helps

Avatar
Zrušiť
Autor

Thank you very much.. it works on me..

Related Posts Replies Zobrazenia Aktivita
2
júl 25
415
0
dec 24
1058
2
okt 24
1152
1
aug 24
2304
2
júl 24
1534