我正在尝试继承base.user_groups_view
和base.view_users_form
来隐藏一些在我的情况下无用的信息。
base.view_users_form
我想完全隐藏Preferences
标签,但此页面有一个字符串,并且没有名称属性,这就是为什么当我尝试查找此页面时它显示为{{1}如果我尝试使用cannot locate in parent view
属性进行搜索,则会显示string
base.view_users_form
当我尝试隐藏应用程序语言时,它会显示View inheritance may not use attribute 'string' as a selector.
当我们处于继承视图时如何隐藏这些
修改
我正在使用Odoo 10 Enterprise
答案 0 :(得分:2)
在odoo 9中,不可能使用' string'在xpath表达式中。在您的情况下,您应该使用索引。例如:
<xpath expr="//page[3]">
<!-- your code -->
</xpath>
这将搜索视图中页面的第三个元素。
您可以访问:xpath_string了解详情。
我希望这能帮到你!