mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 13:52:05 +02:00
83 lines
2.9 KiB
XML
83 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo noupdate="1">
|
|
<!-- Email template for "Prepare to audit" message to all auditors. -->
|
|
<record id="template_email_prepare_to_audit" model="mail.template">
|
|
<field name="name">Prepare to audit</field>
|
|
<field name="model_id" ref="model_mgmtsystem_audit" />
|
|
<field
|
|
name="email_to"
|
|
>{{",".join(object.auditor_user_ids.mapped("email"))}}</field>
|
|
<field name="subject">Prepare to Audit: "{{object.name}}"</field>
|
|
<field name="body_html">
|
|
<![CDATA[
|
|
<p>Hello,</p>
|
|
|
|
<p>
|
|
The audit <t t-out="object.name" /> is scheduled in 2 weeks.
|
|
Please prepare the verification list:
|
|
|
|
<a t-att-href="object.get_action_url()">Link</a>
|
|
</p>
|
|
|
|
<p>
|
|
Thank you.
|
|
--
|
|
Odoo
|
|
</p>
|
|
]]>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Automated Action: Email all auditors 2 weeks before Audit. -->
|
|
<record id="rule_set_prepare_to_audit" model="base.automation">
|
|
<field name="name">Email all auditors 2 weeks before audit.</field>
|
|
<field name="model_id" ref="model_mgmtsystem_audit" />
|
|
<field name="template_id" ref="template_email_prepare_to_audit" />
|
|
<field name="trigger">on_time</field>
|
|
<field name="state">mail_post</field>
|
|
<field name="trg_date_id" ref="field_mgmtsystem_audit__date" />
|
|
<field name="trg_date_range">14</field>
|
|
<field name="trg_date_range_type">day</field>
|
|
</record>
|
|
|
|
<!-- Email template for "Send verification list" message to all followers -->
|
|
<record id="template_email_send_verification_list" model="mail.template">
|
|
<field name="name">Send Verification List</field>
|
|
<field name="model_id" ref="model_mgmtsystem_audit" />
|
|
<field
|
|
name="email_to"
|
|
> {{",".join((object.auditor_user_ids + object.auditee_user_ids + object.user_id).mapped("email"))}}</field>
|
|
<field name="subject">Send Verification List: "{{object.name}}"</field>
|
|
<field name="body_html">
|
|
<![CDATA[
|
|
<p>Hello,</p>
|
|
|
|
<p>
|
|
The audit <t t-out="object.name" /> is scheduled in 1 week.
|
|
Please finish the verification list and send it to the auditees:
|
|
|
|
<a t-att-href="object.get_action_url()">Link</a>
|
|
</p>
|
|
|
|
<p>
|
|
Thank you.
|
|
--
|
|
Odoo
|
|
</p>
|
|
]]>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Automated Action: Email all followers 1 weeks before Audit. -->
|
|
<record id="rule_set_send_verification_list" model="base.automation">
|
|
<field name="name">Email all followers 1 week before audit.</field>
|
|
<field name="model_id" ref="model_mgmtsystem_audit" />
|
|
<field name="template_id" ref="template_email_send_verification_list" />
|
|
<field name="trigger">on_time</field>
|
|
<field name="state">mail_post</field>
|
|
<field name="trg_date_id" ref="field_mgmtsystem_audit__date" />
|
|
<field name="trg_date_range">7</field>
|
|
<field name="trg_date_range_type">day</field>
|
|
</record>
|
|
|
|
</odoo>
|