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.
31 lines
1.4 KiB
31 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<!--Email template -->
|
|
<record id="repair_request_close_email_template" model="mail.template">
|
|
<field name="name">Repair Request Closed: Send by email</field>
|
|
<field name="model_id" ref="base_machine_repair_management.model_machine_repair"/>
|
|
<field name="email_from">{{object.customer_id.email}}</field>
|
|
<field name="email_to">{{ object.email}}</field>
|
|
<field name="subject">Machine Repair Request Closing (Ref{{object.repair_seq}})</field>
|
|
<field name="body_html" type="html">
|
|
<div style="margin: 0px; padding: 0px;">
|
|
<p style="margin: 0px; padding: 0px; font-size: 13px;">
|
|
<t t-out="object.customer_id.name"/>
|
|
<br/>
|
|
<br/>
|
|
Here is your repair request with reference
|
|
<t t-out="object.repair_seq"/>
|
|
is closed on
|
|
<t t-out="object.closing_date"/>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
Do not hesitate to contact us if you have any questions.
|
|
</p>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|