Odoo modules related to surveys
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
746 B

2 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="survey_question_form" model="ir.ui.view">
  4. <field name="name">survey_custom_matrix survey.question form</field>
  5. <field name="model">survey.question</field>
  6. <field name="inherit_id" ref="survey.survey_question_form"/>
  7. <field name="arch" type="xml">
  8. <xpath expr="//notebook//page//field[@name='labels_ids']//tree" position="inside">
  9. <field name="type" attrs="{'column_invisible': [('parent.matrix_subtype','!=','custom')]}"/>
  10. <field name="value_ids" widget="many2many_tags"
  11. attrs="{'column_invisible': [('parent.matrix_subtype','!=','custom')], 'invisible': [('type', '!=', 'dropdown')]}"/>
  12. </xpath>
  13. </field>
  14. </record>
  15. </odoo>