oca-ocb-core/odoo-bringout-oca-ocb-mail/mail/views/mail_template_views.xml
Ernad Husremovic 2d3ee4855a 19.0 vanilla
2026-03-09 09:30:27 +01:00

155 lines
9.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data>
<record model="ir.ui.view" id="email_template_form">
<field name="name">email.template.form</field>
<field name="model">mail.template</field>
<field name="arch" type="xml">
<form string="Templates" class="o_mail_template_form_view">
<header>
<field name="ref_ir_act_window" invisible="1"/>
<field name="template_fs" invisible="1"/>
<field name="is_template_editor" invisible="1"/>
<button string="Preview"
name="action_open_mail_preview" type="object"
class="btn-primary" target="new"/>
<button string="Reset Template"
name="%(mail_template_reset_action)d" type="action"
groups="mail.group_mail_template_editor"
invisible="not template_fs"/>
<t groups="base.group_no_one">
<button string="Add Context Action"
class="btn btn-secondary"
name="create_action" type="object"
groups="base.group_system"
invisible="ref_ir_act_window"
help="Display an option on related documents to open a composition wizard with this template"/>
<button string="Remove Context Action"
class="btn btn-secondary"
name="unlink_action" type="object"
invisible="not ref_ir_act_window"
help="Remove the contextual action to use this template on related documents"/>
</t>
</header>
<sheet>
<div class="oe_title">
<label for="name"/>
<h1><field name="name" class="w-100" string="Template Name"
required="1" placeholder='e.g. "Welcome email"'/></h1>
<group>
<field name="model_id" groups="!base.group_no_one" invisible="context.get('default_model')" placeholder="e.g. Contact" required="1" options="{'no_create': True}"/>
<field name="model_id" groups="base.group_no_one" placeholder="e.g. Contact" required="1" options="{'no_create': True}"/>
<field name="subject" options="{'dynamic_placeholder': true}"
placeholder='e.g. "Welcome to MyCompany" or "Nice to meet you, {{ object.name }}"'/>
<field name="model" invisible="1"/>
</group>
</div>
<notebook>
<page string="Body" name="content">
<field name="can_write" invisible="1"/>
<field name="body_html" widget="html_mail" class="oe-bordered-editor"
placeholder="Write your message here..."
options="{'codeview': true, 'dynamic_placeholder': true, 'allowCommandVideo': false}"
readonly="not can_write and id"/>
<div invisible="not can_write" class="fst-italic text-muted">Tip: Write /field to insert dynamic content!</div>
</page>
<page string="Settings" name="email_configuration" groups="base.group_no_one">
<group col="2">
<group>
<separator string="Sender &amp; Recipients"/>
<field name="email_from" placeholder="Sender's email"/>
<field name="use_default_to"/>
<field name="email_to" invisible="use_default_to"
placeholder="Comma-separated recipient addresses"/>
<field name="partner_to" invisible="use_default_to"
placeholder="Comma-separated ids of recipient partners"/>
<field name="email_cc" invisible="use_default_to"
placeholder="Comma-separated carbon copy of recipients addresses"/>
<field name="reply_to" placeholder="Capture replies in the chatter"/>
</group>
<group>
<separator string="Technical"/>
<field name="lang" placeholder="Main partner's language" options="{'dynamic_placeholder': true}"/>
<field name="has_mail_server" invisible="1"/>
<field name="mail_server_id" invisible="not has_mail_server" placeholder="By order of server priority"/>
<field name="auto_delete"/>
<field name="scheduled_date" string="Scheduled Send Date" placeholder="Send Instantly" options="{'dynamic_placeholder': true}"/>
</group>
</group>
</page>
<page string="Options" name="email_settings">
<group col="2">
<group>
<field name="has_dynamic_reports" invisible="1"/>
<field name="attachment_ids" widget="many2many_binary"/>
<field name="report_template_ids" widget="many2many_tags"
domain="[('model','=',model)]"
invisible="not has_dynamic_reports"
options="{'no_create': True}"
placeholder="None"/>
</group>
<group>
<field name="user_id" widget="many2one_avatar_user"
readonly="not is_template_editor"
invisible="not is_template_editor"
placeholder="Shared with all users"/>
<field name="description" placeholder="Describe when this template should be used"/>
</group>
</group>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record model="ir.ui.view" id="email_template_tree">
<field name="name">email.template.list</field>
<field name="model">mail.template</field>
<field name="arch" type="xml">
<list string="Templates">
<field name="mail_server_id" column_invisible="True"/>
<field name="name"/>
<field name="model_id" groups="base.group_no_one"/>
<field name="user_id" optional="show" widget="many2one_avatar_user"/>
<field name="description"/>
<field name="subject" optional="hidden"/>
<field name="email_from" optional="hidden"/>
<field name="email_to" optional="hidden"/>
<field name="partner_to" optional="hidden"/>
</list>
</field>
</record>
<record id="view_email_template_search" model="ir.ui.view">
<field name="name">email.template.search</field>
<field name="model">mail.template</field>
<field name="arch" type="xml">
<search string="Templates">
<field name="name" filter_domain="['|', '|', ('name','ilike',self), ('subject','ilike',self), ('email_to','ilike',self)]" string="Templates"/>
<field name="lang"/>
<field name="model" filter_domain="[('model', '=', raw_value)]"/>
<field name="model_id"/>
<filter name="my_templates" string="My Templates" domain="[('user_id', '=', uid)]"/>
<filter name="base_templates" string="Base Templates" domain="[('template_category', '=', 'base_template')]"/>
<filter name="custom_templates" string="Custom Templates" domain="[('template_category', '=', 'custom_template')]"/>
<group>
<filter string="SMTP Server" name="smtpserver" domain="[]" context="{'group_by':'mail_server_id'}"/>
<filter string="Model" name="group_by_model_id" domain="[]" context="{'group_by':'model_id'}"/>
</group>
</search>
</field>
</record>
<record model="ir.actions.act_window" id="action_email_template_tree_all">
<field name="name">Email Templates</field>
<field name="res_model">mail.template</field>
<field name="path">email-templates</field>
<field name="view_mode">form,list</field>
<field name="view_id" ref="email_template_tree" />
<field name="search_view_id" ref="view_email_template_search"/>
<field name="context">{'search_default_base_templates': 1}</field>
</record>
</data>
</odoo>