Some checks failed
pre-commit / pre-commit (pull_request) Failing after 1m45s
21 lines
857 B
XML
21 lines
857 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="survey_question_form_inh" model="ir.ui.view">
|
|
<field name="name">survey.question.form.inherit.extra_fields</field>
|
|
<field name="model">survey.question</field>
|
|
<field name="inherit_id" ref="survey.survey_question_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='options']//field[@name='matrix_subtype']" position="before">
|
|
<field name="max_file_size"
|
|
attrs="{'invisible': [('question_type', '!=', 'file')]}"
|
|
string="Max File Size (MB)"/>
|
|
<field name="allowed_extensions"
|
|
attrs="{'invisible': [('question_type', '!=', 'file')]}"
|
|
placeholder=".pdf,.docx,.xlsx"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|