You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
626 B
15 lines
626 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Form view -->
|
|
<record id="view_account_form" model="ir.ui.view">
|
|
<field name="name">view.account.form.inherit.account.bank.charge</field>
|
|
<field name="model">account.account</field>
|
|
<field name="inherit_id" ref="account.view_account_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='account_type']" position="after">
|
|
<field name="bank_charge"
|
|
attrs="{'invisible': [('account_type', '!=', 'asset_cash')]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|