如何在Odoo10中通过继承隐藏字段

时间:2018-10-10 11:51:33

标签: xml odoo odoo-10 inventory

我正在尝试通过继承隐藏库存“发票策略”中的字段,但是在终端上出现错误,并且当我隐藏此组时,它还会显示错误“ ValueError:Element”不能位于父级中视图”。

我的代码如下:

<record model="ir.ui.view" id="inventory_rental_order_form">
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="name">Inventory Rental Form</field>
<field name="model">product.template</field>
<field name="arch" type="xml">
    <data>
        <xpath expr="//notebook/page[@name='invoicing']/group[2]" position="replace" invisible="1">
        </xpath>
        <xpath expr="//field[@name='invoice_policy']" position="replace" invisible="1">
        </xpath>
    </data>
</field>

enter image description here 预先感谢

1 个答案:

答案 0 :(得分:0)

尝试这样

 <data>
    <xpath expr="//notebook/page[@name='invoicing']/group[2]" position="attributes">
       <attribute name="invisible">1</attribute>
     </xpath>
     <xpath expr="//field[@name='invoice_policy']" position="attributes">
         <attribute name="invisible">1</attribute>
     </xpath>
 </data>