3

我将 ssnid 和 sinid 设置为不可见字段。但两者仍然显示在我的视图中。似乎 XPath 位置存在问题。!

任何人都可以帮我整理一下吗?

<?xml version="1.0"?>
<openerp>
    <data>
        <!-- 1st part of the sim_view start -->
        <record model="ir.ui.view" id="madulsima_plucker_form">
            <field name="name">madulsima.plucker.form</field>
            <field name="model">madulsima.plucker</field>
            <field name="inherit_id" ref="hr.view_employee_form" />
            <field name="type">form</field>
            <field name="arch" type="xml">
                <notebook position="inside">
                    <page string="Madulsima Plucker Fields">
                        <field name="reg_no" />
                        <field name="worker_name" />

                        <xpath expr="/form/notebook/page/group/field[@name='ssnid']"
                            position="attributes">
                            <attribute name="invisible">True</attribute>
                        </xpath>
                        <xpath expr="/form/notebook/page/group/field[@name='sinid']"
                            position="attributes">
                            <attribute name="invisible">True</attribute>
                        </xpath>

                    </page>
                </notebook>
            </field>
        </record>

        <record model="ir.actions.act_window" id="action_plucker_registration">
            <field name="name">Plucker Registration</field>
            <field name="res_model">madulsima.plucker</field>
            <field name="view_type">form</field>
            <field name="view_mode">form</field>
        </record>


        <menuitem id="menu_madulsima_plucker" name="Madulsima/Checkroll" />

        <menuitem id="menu_madulsima_plucker_registration" name="Plucker Registration"
            parent="menu_madulsima_plucker" action="action_plucker_registration" />
    </data>
</openerp>

我在 view.xml 中发布了我的整个代码

4

1 回答 1

5

继承视图arch字段中的根元素是定位器,它们应该标识父视图中的元素,然后可以根据特殊属性对其执行操作。position

定位器必须具有position属性,并且可以是:

  • 具有包含有效 XPath<xpath>表达式的属性的元素,用于在父视图中定位单个元素;expr
  • 来自父视图的任何有效视图元素;

继承的视图可以有多个根元素,以便对父视图执行多次更改。

您的示例不正确,因为您嵌套了多个定位器:您的xpath元素在page元素内。请注意,3 个元素position在您的继承视图中有一个属性:notebook元素和 2 个xpath元素。它们都需要位于视图架构的顶部,例如:

       <field name="arch" type="xml">
            <notebook position="inside">
               <!-- ... elements you want to add inside the parent notebook -->
            </notebook>
            <xpath expr="/form/notebook/page/group/field[@name='ssnid']"
                   position="attributes">
                <attribute name="invisible">True</attribute>
            </xpath>
            <xpath expr="/form/notebook/page/group/field[@name='sinid']"
                   position="attributes">
                <attribute name="invisible">True</attribute>
            </xpath>
        </field>

PS:如果您不熟悉XPath,您应该在网上查找快速参考或备忘单,例如这个

于 2013-03-18T12:54:26.913 回答