2018-01-16 06:58:15 +01:00
|
|
|
<?xml version='1.0' encoding='utf-8'?>
|
2018-01-16 11:34:37 +01:00
|
|
|
<flectra>
|
2018-01-16 06:58:15 +01:00
|
|
|
<data noupdate="1">
|
|
|
|
<record id="mail_template_data_delivery_confirmation" model="mail.template">
|
|
|
|
<field name="name">Delivery: Send by Email</field>
|
|
|
|
<field name="subject">${object.company_id.name} Delivery Order (Ref ${object.name or 'n/a' })</field>
|
|
|
|
<field name="partner_to">${object.partner_id.id}</field>
|
|
|
|
<field name="model_id" ref="delivery.model_stock_picking"/>
|
|
|
|
<field name="report_template" ref="stock.action_report_delivery"/>
|
|
|
|
<field name="report_name">${(object.name or '').replace('/','_')}</field>
|
|
|
|
<field name="lang">${object.partner_id.lang}</field>
|
|
|
|
<field name="body_html" type="xml">
|
|
|
|
<p>Dear ${object.partner_id.name},</p>
|
|
|
|
<p>We are glad to inform you that your order has been shipped.</p>
|
|
|
|
<p>
|
|
|
|
%if object.carrier_tracking_ref:
|
|
|
|
Your tracking reference:
|
|
|
|
%if object.carrier_tracking_url:
|
|
|
|
<a href="${object.carrier_tracking_url}" target="_blank">${object.carrier_tracking_ref}</a>.
|
|
|
|
%else:
|
|
|
|
${object.carrier_tracking_ref}.
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
</p>
|
|
|
|
<p>Find your delivery order attached for more details.</p>
|
|
|
|
<p>Thank you,</p>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
<!--Email Notification template for Delivery-->
|
|
|
|
<record id="mail_template_data_delivery_notification" model="mail.template">
|
|
|
|
<field name="name">Delivery: Custom Notification Email</field>
|
|
|
|
<field name="subject">${object.subject}</field>
|
|
|
|
<field name="model_id" ref="mail.model_mail_message"/>
|
|
|
|
<field name="auto_delete" eval="True"/>
|
|
|
|
<field name="body_html" type="xml">
|
|
|
|
<table border="0" width="100%" cellpadding="0" bgcolor="#ededed" style="font-family:Arial,Helvetica,sans-serif; padding: 20px; background-color: #ededed" summary="o_mail_notification">
|
|
|
|
<tbody>
|
|
|
|
<!-- HEADER -->
|
|
|
|
<tr>
|
|
|
|
<td align="center" style="min-width: 590px;">
|
|
|
|
<table width="650" border="0" cellpadding="0" bgcolor="#875A7B" style="min-width: 590px; background-color: rgb(135,90,123); padding: 20px;">
|
|
|
|
<tr>
|
|
|
|
<td valign="middle">
|
|
|
|
<span style="font-size:20px; color:white; font-weight: bold;">${object.record_name}</span>
|
|
|
|
</td>
|
|
|
|
<td valign="middle" align="right">
|
|
|
|
<img src="/logo.png" style="padding: 0px; margin: 0px; height: auto; width: 80px;" alt="${user.company_id.name}"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<!-- CONTENT -->
|
|
|
|
<tr>
|
|
|
|
<td align="center" style="min-width: 590px;">
|
|
|
|
<table width="650" border="0" cellpadding="0" bgcolor="#ffffff" style="min-width: 590px; background-color: rgb(255, 255, 255); padding: 20px;">
|
|
|
|
<tbody>
|
|
|
|
<td valign="top" style="color: #555; font-size: 14px;">${object.body | safe}</td>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<!-- FOOTER -->
|
|
|
|
<tr>
|
|
|
|
<td align="center" style="min-width: 590px;">
|
|
|
|
<table width="650" border="0" cellpadding="0" bgcolor="#875A7B" style="min-width: 590px; background-color: rgb(135,90,123); padding: 20px;">
|
|
|
|
<tr>
|
|
|
|
<td valign="middle" align="left" style="color: #fff; padding-top: 10px; padding-bottom: 10px; font-size: 12px;">${user.company_id.name}<br/>${user.company_id.phone or ''}</td>
|
|
|
|
<td valign="middle" align="right" style="color: #fff; padding-top: 10px; padding-bottom: 10px; font-size: 12px;">
|
|
|
|
% if user.company_id.email:
|
|
|
|
<a href="mailto:${user.company_id.email}" style="text-decoration:none; color: white;">${user.company_id.email}</a><br/>
|
|
|
|
% endif
|
|
|
|
% if user.company_id.website:
|
|
|
|
<a href="${user.company_id.website}" style="text-decoration:none; color: white;">${user.company_id.website}</a>
|
|
|
|
% endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2018-01-30 11:14:17 +01:00
|
|
|
<!-- <tr>
|
2018-10-15 11:59:04 +02:00
|
|
|
<td align="center">Powered by <a href="https://www.flectrahq.com">Flectra</a>.</td>
|
2018-01-30 11:14:17 +01:00
|
|
|
</tr> -->
|
2018-01-16 06:58:15 +01:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
</data>
|
2018-01-16 11:34:37 +01:00
|
|
|
</flectra>
|