2
私はxpathで請求書フォームのディスカウントフィールドを隠そうとしています。しかし、それは動作しません。請求書フォームのディスカウントフィールドを非表示にするにはどうすればいいですか? Odoo
次は私のコードです:
<odoo>
<data>
<record model="ir.ui.view" id="hidden_discount">
<field name="name">account.invoice.hidden.discount</field>
<field name="model">account.invoice</field>
<field name="inherit_id" ref="account.invoice_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='discount']" position="attributes">
<attribute name="invisible">True</attribute>
</xpath>
</field>
</record>
</data>
</odoo>
あなたは、任意の解決策や提案を持っていますか?
は、あなたの答えをありがとう:D は、私は、ビューであるから、他の継承ビューがありました。それはなぜそれが動作しないanwserです:( – ReiiYuki