forked from OCA/survey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurvey_question_views.xml
More file actions
23 lines (23 loc) · 997 Bytes
/
survey_question_views.xml
File metadata and controls
23 lines (23 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="survey_question_form" model="ir.ui.view">
<field name="model">survey.question</field>
<field name="inherit_id" ref="survey.survey_question_form" />
<field name="arch" type="xml">
<xpath expr="//field[@name='comments_allowed']/.." position="after">
<group name="crm" string="CRM">
<field
name="show_in_lead_description"
invisible="question_type in ['matrix', 'simple_choice', 'multiple_choice']"
/>
<field name="allowed_crm_lead_field_domain" invisible="1" />
<field
name="crm_lead_field"
options="{'no_create': True, 'no_open': True}"
domain="allowed_crm_lead_field_domain"
/>
</group>
</xpath>
</field>
</record>
</odoo>