Skip to content

Instantly share code, notes, and snippets.

@sehrishnaz
Created January 8, 2020 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sehrishnaz/c4eaa2ace8fd1a4cc71427ad3b853a2d to your computer and use it in GitHub Desktop.
Save sehrishnaz/c4eaa2ace8fd1a4cc71427ad3b853a2d to your computer and use it in GitHub Desktop.
Create Window Action in Odoo
<record model="ir.actions.act_window" id="action_any_name_goes_here">
<field name="name">My Action</field>
<field name="res_model">your.model</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
@sehrishnaz
Copy link
Author

Read more in detail: Action Window in Odoo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment