mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
17 lines
641 B
XML
17 lines
641 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="view_account_reconcile_model_form_inherit" model="ir.ui.view">
|
|
<field name="name">account.reconcile.model.form.inherit</field>
|
|
<field name="model">account.reconcile.model</field>
|
|
<field name="inherit_id" ref="account.view_account_reconcile_model_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='match_partner']" position="before">
|
|
<field name="set_partner_id"
|
|
attrs="{'invisible': [('match_partner', '=', True)]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|