I'm new to Odoo. I would like to change the top most menu name (with no action) from Employee
to My new string
.
<record id="hr.menu_hr_root" model="ir.ui.menu">
<field name="name">My new string</field>
<field name="sequence">92</field>
</record>
I'm sure that id is correct because sequence
attribute is changed as expected. The problem is the name
being unchanged anyway. The menu I want to modify is from default hr
module. The only solution I have for now is to delete the record and recreate it with the new values. I tried to update on my own other menu views and they work as I expected, but the case from default hr
module which is translated into my language (Vietnamese). Could anyone tell me some ideas about this?