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.
34 lines
1.5 KiB
34 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--Franchise sales feedback email template data-->
|
|
<data noupdate="1">
|
|
<record id="feedback_email_template" model="mail.template">
|
|
<field name="name">SALES FEEDBACK</field>
|
|
<field name="model_id"
|
|
ref="franchise_management.model_franchise_dealer"/>
|
|
<field name="email_from">{{object.company_id.email}}</field>
|
|
<field name="email_to"/>
|
|
<field name="lang">{{ ctx.get('default_lang') }}</field>
|
|
<field name="subject">Monthly Sales Feedback</field>
|
|
<field name="body_html" type="html">
|
|
<p>
|
|
Hi,<br/>
|
|
Please submit monthly feedback report about the sales of the
|
|
product, which you owned through the dealership. <br/>
|
|
Please mention your monthly business target, achieved
|
|
target, and the total sales done .<br/>
|
|
</p>
|
|
<div><br/>
|
|
<a style="background-color:#875A7B;
|
|
padding:8px 20px 8px 20px;
|
|
text-decoration:none; color:#fff; border-style:solid;
|
|
display:inline-block;
|
|
border-radius:5px; font-weight:bold; font-style:normal;
|
|
line-height:26px; width:auto; text-align:center"
|
|
t-attf-href="{{object.feedback_url}}">Submit Feedback</a>
|
|
<br/>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|