Odoo - 在没有名称的继承视图中隐藏组或页面

Odoo - Hide a group or page in inherited view without name

我正在尝试继承 base.user_groups_viewbase.view_users_form 以隐藏一些对我而言无用的信息。

base.view_users_form

我想完全隐藏 Preferences 选项卡,但是这个页面有一个字符串并且没有名称属性,这就是为什么当我试图找出这个页面时它说 cannot locate in parent view 如果我尝试使用 string 属性进行搜索 View inheritance may not use attribute 'string' as a selector.

base.view_users_form

与上面相同,当我尝试隐藏应用程序 spearator 时它说 View inheritance may not use attribute 'string' as a selector.

如何在继承视图中隐藏这些

编辑

我正在使用 Odoo 10 企业版

在 odoo 9 中不可能在 xpath 表达式中使用 'string'。在您的情况下,您应该使用索引。例如:

<xpath expr="//page[3]">
    <!-- your code -->
</xpath>

这将搜索第三个元素,即您视图中的页面。

您可以访问:xpath_string了解更多信息。

希望对您有所帮助!