19 lines
803 B
XML
Executable File
19 lines
803 B
XML
Executable File
<?xml version='1.0' encoding='utf-8'?>
|
|
<odoo>
|
|
|
|
<record id="act_report_xml_inherit_view_form" model="ir.ui.view">
|
|
<field name="name">ir.actions.report.inherit.view.form</field>
|
|
<field name="model">ir.actions.report</field>
|
|
<field name="inherit_id" ref="base.act_report_xml_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='report_name']" position="attributes">
|
|
<attribute name="attrs">{'required': [('report_type', 'not in', ['docx-docx'])]}</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='report_name']" position="after">
|
|
<field name="report_docx_template" attrs="{'required': [('report_type', 'in', ['docx-docx'])]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|