mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-25 16:22:07 +02:00
16 lines
613 B
XML
16 lines
613 B
XML
<odoo>
|
|
<record id="view_move_form" model="ir.ui.view">
|
|
<field name="name">account.move.form.inherit.view.billing</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="/form/sheet/group/group[1]" position="inside">
|
|
<field
|
|
name="billing_ids"
|
|
widget="many2many_tags"
|
|
attrs="{'invisible': [('billing_ids', '=', [])]}"
|
|
/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|