mirror of
https://github.com/bringout/oca-ocb-project.git
synced 2026-04-18 10:02:07 +02:00
41 lines
2.1 KiB
XML
41 lines
2.1 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<record id="digest.digest_digest_default" model="digest.digest">
|
|
<field name="kpi_project_task_opened">True</field>
|
|
</record>
|
|
</data>
|
|
|
|
<data>
|
|
<record id="digest_tip_project_0" model="digest.tip">
|
|
<field name="name">Tip: Customize tasks and stages according to the project</field>
|
|
<field name="sequence">1200</field>
|
|
<field name="group_id" ref="project.group_project_manager"/>
|
|
<field name="tip_description" type="html">
|
|
<div>
|
|
<p class="tip_title">Tip: Customize tasks and stages according to the project</p>
|
|
<p class="tip_content">Customize how tasks are named according to the project and create tailor made status messages for each step of the workflow. It helps to document your workflow: what should be done at which step.</p>
|
|
<img src="https://download.odoocdn.com/digests/project/static/src/img/project-custom-tasks.gif" class="illustration_border" />
|
|
</div>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="digest_tip_project_1" model="digest.tip">
|
|
<field name="name">Tip: Create tasks from incoming emails</field>
|
|
<field name="sequence">1300</field>
|
|
<field name="group_id" ref="project.group_project_user"/>
|
|
<field name="tip_description" type="html">
|
|
<div>
|
|
<t t-set="project_record" t-value="object.env['project.project'].search([('alias_name', '!=', False)], limit=1, order='sequence asc')"/>
|
|
<p class="tip_title">Tip: Create tasks from incoming emails</p>
|
|
<t t-if="project_record and project_record.alias_domain">
|
|
<p class="tip_content">Emails sent to <a t-attf-href="mailto:{{project_record.alias_value}}" target="_blank" style="color: #875a7b; text-decoration: none;"><t t-out="project_record.alias_value" /></a> will generate tasks in your <t t-out="project_record.name"></t> project.</p>
|
|
</t>
|
|
<t t-else="">
|
|
<p class="tip_content">Create tasks by sending an email to the email address of your project.</p>
|
|
</t>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|