This question has been flagged
1 Reply
6217 Views

I want to rename a menu (purchase => purchase => Quotation to purchase => purchase => Something_else ) in pruchase order view so i'm thinking to inherit this view in a custom module and rename the menu, but i don't know how to achieve that.

 

Openerp 7.

Avatar
Discard
Best Answer

Just use menu item with the same id and rename it. Also use before id name of module with dot.

For example menu "purchase => purchase => Quotation":

<menuitem action="YOUR ACTION" id="purchase.menu_purchase_rfq"
            parent="menu_procurement_management"
            name="YOUR NAME"
            sequence="0"/>

Avatar
Discard