如何在Odoo 10上使用此代码将菜单中的博客名称重命名为新闻名称?
<xpath expr="path_of_field/page/group/whatever" position="attributes">
<attribute name="string">here is value</attribute>
</xpath>
尝试在模块中的XML数据文件中覆盖name
的website_blog.menu_news
data record值:
<record id="website_blog.menu_news" model="website.menu">
<field name="name">News</field>
</record>
不要忘记将XML文件添加到模块的__manifest__.py中的data
文件列表中。