Search code examples
odoomenuitem

Openerp change the action of top menu Human Resources


I need to change the action for the default Human resources menu.

when I am clicking on the "human Resources Menu" it is going to Employee menu on left side, but I need to go to leave requests directly. how can I do that?

some one suggested me change sequence number but I did not know how to do that, please help me to do this.

see the following picture to see in detail.

enter image description here


Solution

  • You need to change in two file and replace with below tag given.

    • addons / hr / hr_view.xml

      <menuitem id="menu_hr_main" parent="menu_hr_root" name="Human Resources" sequence="20"/>
      
    • addons / hr_holidays / hr_holidays_view.xml

      <menuitem name="Leaves" parent="hr.menu_hr_root" id="menu_open_ask_holidays" sequence="0"/>
      

    Hope this will give you as your require output.