If you want to make wizard execution
in OpenERP(Odoo) follow the below mentioned code and paste it in your wizard views_xml
file:
<record id="action_idea_cleanup_wizard" model="ir.actions.act_window">
<field name="name">Cleanup</field>
<field name="type">ir.actions.act_window</field></record>
<field name="res_model">idea.cleanup.wizard</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
Note->Such wizards are launched via regular action records, with a special target field
used to open the wizard view in a new window.
0 Comment(s)