mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
16 lines
796 B
XML
16 lines
796 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="invoice_supplier_form" model="ir.ui.view">
|
|
<field name="name">account.invoice.supplier.form (account_banking_payment_blocking)</field>
|
|
<field name="model">account.invoice</field>
|
|
<field name="inherit_id" ref="account.invoice_supplier_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="move_id" position="after">
|
|
<field name="blocked" attrs="{'invisible': [('move_id', '=', False)]}"/>
|
|
<field name="draft_blocked" attrs="{'invisible': [('move_id', '!=', False)]}"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp> |