16 lines
535 B
XML
16 lines
535 B
XML
<odoo>
|
|
<!-- Inherit form account move view -->
|
|
<record id="takaful_account_move_inherit_form" model="ir.ui.view">
|
|
<field name="name">takaful.account.move.inherit.form</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='invoice_origin']" position="attributes">
|
|
<attribute name="attrs">{'invisible': False}</attribute>
|
|
|
|
</xpath>
|
|
|
|
|
|
</field>
|
|
</record>
|
|
</odoo> |