Reputation: 229
I want to add some menu in the top level area in odoo 10
before the setting menu
Upvotes: 2
Views: 279
Reputation: 2764
Just add a new menuitem tag without parent. Like:
<menuitem name="Custom Menu" id="custom_menu_without_parent"/>
And put some childs pointing to that menu, like:
<menuitem name="Custom Menu Group" id="custom_menu_group" parent="custom_menu_without_parent" sequence="1"/>
<menuitem name="Custom Menu Entry" id="custom_menu_entry" parent="custom_menu_group" action="custom_entry_action" sequence="2"/>
Upvotes: 3