This question has been flagged
1 Reply
2329 Views

I am creating a drilldown menu for the location of materials

should I make a module for doing this or making customization in the setting?

Also, is there an example to make a drilldown menu?

Avatar
Discard
Best Answer

If You are cutomizing a module,for example say stock.

If it is a parent menu give like this : -

<menuitem id="unique_id"  name="Menu Name"
            sequence ="sequnce No(1,2,3...etc)" parent="stock.menu_stock_root"/>

child menu item

<menuitem action=" action_my_customization_form" id="child_unique_id"  name="Child Menu Name"
            sequence ="1" parent="unique_id"/>

 

If You want to know more about this visit this site http://openerp-server.readthedocs.org/en/latest/03_module_dev_04.html#actions

Avatar
Discard