我可以在Odoo中更改“员工”标签吗?

问题描述 投票:0回答:2

我只想将在Employees(hr)模块上显示的标签'Employees'更改为Odoo 10中的'Staffs'。我怎样才能实现这一目标?

提前致谢 !!

odoo odoo-10
2个回答
0
投票

请检查一下。

<record model="ir.ui.menu" id="hr.menu_hr_root">
      <field name="name">My New Menu Name</field>
</record>

>这样您就可以更改菜单名称。


0
投票

你可以像这样使用xpath来实现:

<field name="employee_id" position="attributes">
    <attribute name="string">Staffs</attribute>
</field>
© www.soinside.com 2019 - 2024. All rights reserved.