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.
17 lines
731 B
17 lines
731 B
<odoo>
|
|
<record id="inherit_report_config_view" model="ir.ui.view">
|
|
<field name="name">inherit.report.config.view</field>
|
|
<field name="model">account.financial.report</field>
|
|
<field name="inherit_id"
|
|
ref="base_accounting_kit.view_account_financial_report_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='account_ids']" position="replace">
|
|
<field name="account_ids"
|
|
attrs="{'invisible': [('type','not in',['accounts','account_type'])]}" readonly="1"/>
|
|
</xpath>
|
|
<xpath expr="//field[@name='account_type_ids']" position="replace">
|
|
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|