Skip to content
Snippets Groups Projects
Commit 6f223edf authored by Jeremy Kersten's avatar Jeremy Kersten Committed by Denis Ledoux
Browse files

[FIX] mail: display date and datetime in tracking value with the right timzeone.

When tracking value is converted to be rendered as a message_post, we convert
the date/datetime with the current local from momentjs.

Related to #12327

Courtesy of @aab-odoo for help and review.
parent 09bf8b43
No related branches found
No related tags found
No related merge requests found
......@@ -299,6 +299,7 @@ class Message(models.Model):
'changed_field': tracking.field_desc,
'old_value': tracking.get_old_display_value()[0],
'new_value': tracking.get_new_display_value()[0],
'field_type': tracking.field_type,
}) for tracking in trackings)
# 4. Update message dictionaries
......
......@@ -151,6 +151,20 @@ var Thread = Widget.extend({
msg.hour = msg.date.format('LT');
}
if (message.tracking_value_ids && message.tracking_value_ids.length) {
_.each(message.tracking_value_ids, function(f) {
if (_.contains(['date', 'datetime'], f.field_type)) {
var format = (f.field_type === 'date') ? 'LL' : 'LLL';
if (f.old_value) {
f.old_value = moment.utc(f.old_value).local().format(format);
}
if (f.new_value) {
f.new_value = moment.utc(f.new_value).local().format(format);
}
}
});
}
if (_.contains(this.expanded_msg_ids, message.id)) {
msg.expanded = true;
}
......
......@@ -150,10 +150,10 @@
<li>
<t t-esc="value.changed_field"/>:
<t t-if="value.old_value">
<span> <t t-esc="value.old_value"/> </span>
<span> <t t-esc="value.old_value || ((value.field_type !== 'boolean') and '')"/> </span>
<span class="fa fa-long-arrow-right"/>
</t>
<span> <t t-esc="value.new_value"/> </span>
<span> <t t-esc="value.new_value || ((value.field_type !== 'boolean') and '')"/> </span>
</li>
</t>
</ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment