22 lines
880 B
XML
22 lines
880 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<odoo>
|
||
|
|
||
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||
|
<field name="name">res.config.settings.view.form.inherit.account</field>
|
||
|
<field name="inherit_id" ref="account.res_config_settings_view_form"/>
|
||
|
<field name="model">res.config.settings</field>
|
||
|
<field name="arch" type="xml">
|
||
|
<field name="module_account_asset" position="replace">
|
||
|
<field name="module_account_asset_management" class="oe_inline"/>
|
||
|
</field>
|
||
|
<xpath expr="//label[@for='module_account_asset']" position="replace">
|
||
|
<label for="module_account_asset_management"/>
|
||
|
</xpath>
|
||
|
<xpath expr="//div[@id='msg_account_asset']" position="attributes">
|
||
|
<attribute name="attrs">{'invisible': [('module_account_asset_management', '=', False)]}</attribute>
|
||
|
</xpath>
|
||
|
</field>
|
||
|
</record>
|
||
|
|
||
|
</odoo>
|