blob: d1cdca9433efe067076f49341c4f918799a7181e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
odoo.define("mail.ActivityCell", function (require) {
"use strict";
require("mail.Activity");
const field_registry = require('web.field_registry');
const KanbanActivity = field_registry.get('kanban_activity');
const ActivityCell = KanbanActivity.extend({
/**
* @override
* @private
*/
_render() {
// replace clock by closest deadline
const $date = $('<div class="o_closest_deadline">');
const date = new Date(this.record.data.closest_deadline);
// To remove year only if current year
if (moment().year() === moment(date).year()) {
$date.text(date.toLocaleDateString(moment().locale(), {
day: 'numeric', month: 'short'
}));
} else {
$date.text(moment(date).format('ll'));
}
this.$('a').html($date);
if (this.record.data.activity_ids.res_ids.length > 1) {
this.$('a').append($('<span>', {
class: 'badge badge-light badge-pill border-0 ' + this.record.data.activity_state,
text: this.record.data.activity_ids.res_ids.length,
}));
}
if (this.$el.hasClass('show')) {
// note: this part of the rendering might be asynchronous
this._renderDropdown();
}
}
});
return ActivityCell;
});
|