-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] fixed some problems after initial migration
- Loading branch information
1 parent
f458e27
commit 4c98cde
Showing
6 changed files
with
34 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
|
||
<record id="email_template_id" model="mail.template"> | ||
<field name="name">Email | ||
Template for Meeting | ||
</field> | ||
<field name="email_from">{{object.user_id_meeting | ||
or ''}} | ||
</field> | ||
<field name="subject">{{object.datetime_meeting or ''}}</field> | ||
<field name="model_id" ref="project_scrum.model_project_scrum_meeting" /> | ||
<field name="auto_delete" eval="True" /> | ||
<field name="email_to">{{object.user_id_meeting | ||
or ''}} | ||
</field> | ||
<field name="body_html"> | ||
<div | ||
style="font-family: 'Lucica Grande', Ubuntu, Arial, Verdana, sans-serif; font-size: 16px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); " | ||
> | ||
<p>Name: <t t-out="object.user_id_meeting" /></p> | ||
<p>Date: <t t-out="object.datetime_meeting" /></p> <br /> | ||
<p | ||
style="color:blue; font-size:14" | ||
> What did you do since the last meeting?</p> | ||
<t t-out="object.question_yesterday" /> <br /><br /> | ||
<p | ||
style="color:blue; font-size:14" | ||
>What do you plan to do till the next meeting?</p> | ||
<t t-out="object.question_today" /> <br /><br /> | ||
<p style="color:blue; font-size:14">Are there anything blocking you?</p> | ||
<t t-out="object.question_blocks" /> <br /><br /> | ||
</div> | ||
</field> | ||
</record> | ||
|
||
<record id="email_template_id" model="mail.template"> | ||
<field name="name">Email Template for Meeting</field> | ||
<field name="email_from">{{object.user_id_meeting or ''}}</field> | ||
<field name="subject">{{object.datetime_meeting or ''}}</field> | ||
<field name="model_id" ref="project_scrum.model_project_scrum_meeting"/> | ||
<field name="auto_delete" eval="True" /> | ||
<field name="email_to">{{object.user_id_meeting or ''}}</field> | ||
<field name="body_html" type="html"> | ||
<div | ||
style="font-family: 'Lucica Grande', Ubuntu, Arial, Verdana, sans-serif; font-size: 16px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); " | ||
> | ||
<p>Name: <t t-out="object.user_id_meeting" /></p> | ||
<p>Date: <t t-out="object.datetime_meeting" /></p> <br /> | ||
<p | ||
style="color:blue; font-size:14" | ||
> What did you do since the last meeting?</p> | ||
<t t-out="object.question_yesterday" /> <br /><br /> | ||
<p | ||
style="color:blue; font-size:14" | ||
>What do you plan to do till the next meeting?</p> | ||
<t t-out="object.question_today" /> <br /><br /> | ||
<p style="color:blue; font-size:14">Are there anything blocking you?</p> | ||
<t t-out="object.question_blocks" /> <br /><br /> | ||
</div> | ||
</field> | ||
</record> | ||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters