78 lines
4.8 KiB
XML
78 lines
4.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record model="ir.ui.view" id="survey_invite_view_form">
|
|
<field name="name">survey.invite.view.form</field>
|
|
<field name="model">survey.invite</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Compose Email" class="o_mail_composer_form">
|
|
<group col="1">
|
|
<group col="2">
|
|
<field name="author_id" invisible="1"/>
|
|
<field name="survey_access_mode" invisible="1"/>
|
|
<field name="survey_users_login_required" invisible="1"/>
|
|
<field name="survey_users_can_signup" invisible="1"/>
|
|
<field name="survey_id" invisible="1"/>
|
|
<field name="existing_mode" widget="radio" invisible="1" />
|
|
<field name="lang" invisible="1"/>
|
|
<field name="render_model" invisible="1"/>
|
|
<label class="o_survey_label_survey_start_url" for="survey_start_url" string="Survey Link"
|
|
invisible="survey_access_mode != 'public'"/>
|
|
<field name="survey_start_url" nolabel="1" widget="CopyClipboardChar"
|
|
readonly="1"
|
|
invisible="survey_access_mode != 'public'"/>
|
|
<field string="Send by Email" name="send_email" widget="boolean_toggle" options="{'autosave': False}"
|
|
invisible="survey_access_mode != 'public'"/>
|
|
<field name="partner_ids"
|
|
widget="many2many_tags_email"
|
|
placeholder="Add existing contacts..." options="{'no_quick_create': True}"
|
|
context="{'show_email': True, 'form_view_ref': 'base.view_partner_simple_form'}"
|
|
required="True"
|
|
invisible="not send_email"/>
|
|
<field name="emails"
|
|
invisible="survey_users_login_required or not send_email"
|
|
placeholder="e.g. 'Rick Sanchez' <rick_sanchez@example.com>, hictor_vugo@example.com"/>
|
|
</group>
|
|
<field name="existing_partner_ids" invisible="1"/>
|
|
<field name="existing_emails" invisible="1"/>
|
|
<div col="2" class="alert alert-warning" role="alert"
|
|
invisible="survey_access_mode == 'public' or not existing_text">
|
|
<field name="existing_text"/>
|
|
<group col="2">
|
|
<label for="existing_mode" string="Handle existing"/>
|
|
<div>
|
|
<field name="existing_mode" nolabel="1"/>
|
|
<p invisible="existing_mode != 'resend'">Customers will receive the same token.</p>
|
|
<p invisible="existing_mode != 'new'">Customers will receive a new token and be able to completely retake the survey.</p>
|
|
</div>
|
|
</group>
|
|
</div>
|
|
<group col="2">
|
|
<field name="subject" invisible="not send_email" placeholder="Subject..."/>
|
|
</group>
|
|
<field name="can_edit_body" invisible="1"/>
|
|
<field name="body" class="oe-bordered-editor border border-1 m-3 p-0 flex-fill"
|
|
options="{'style-inline': true, 'height': 380}"
|
|
invisible="not send_email"
|
|
readonly="not can_edit_body" force_save="1"/>
|
|
<group invisible="not send_email">
|
|
<group>
|
|
<field name="attachment_ids" widget="many2many_binary"/>
|
|
</group>
|
|
<group>
|
|
<field name="deadline" widget="date"/>
|
|
<field name="template_id" label="Use template"/>
|
|
</group>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button string="Send" invisible="not send_email" name="action_invite" type="object" class="btn-primary" data-hotkey="q"/>
|
|
<button string="Close" class="btn-secondary" special="cancel" data-hotkey="x"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|