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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
odoo.define('mail.BasicView', function (require) {
"use strict";
const BasicView = require('web.BasicView');
const mailWidgets = ['kanban_activity'];
BasicView.include({
init: function () {
this._super.apply(this, arguments);
const post_refresh = this._getFieldOption('message_ids', 'post_refresh', false);
const followers_post_refresh = this._getFieldOption('message_follower_ids', 'post_refresh', false);
this.chatterFields = {
hasActivityIds: this._hasField('activity_ids'),
hasMessageFollowerIds: this._hasField('message_follower_ids'),
hasMessageIds: this._hasField('message_ids'),
hasRecordReloadOnAttachmentsChanged: post_refresh === 'always',
hasRecordReloadOnMessagePosted: !!post_refresh,
hasRecordReloadOnFollowersUpdate: !!followers_post_refresh,
isAttachmentBoxVisibleInitially: (
this._getFieldOption('message_ids', 'open_attachments', false) ||
this._getFieldOption('message_follower_ids', 'open_attachments', false)
),
};
const fieldsInfo = this.fieldsInfo[this.viewType];
this.rendererParams.chatterFields = this.chatterFields;
// LEGACY for widget kanban_activity
this.mailFields = {};
for (const fieldName in fieldsInfo) {
const fieldInfo = fieldsInfo[fieldName];
if (_.contains(mailWidgets, fieldInfo.widget)) {
this.mailFields[fieldInfo.widget] = fieldName;
fieldInfo.__no_fetch = true;
}
}
this.rendererParams.activeActions = this.controllerParams.activeActions;
this.rendererParams.mailFields = this.mailFields;
},
/**
* Gets the option value of a field if present.
*
* @private
* @param {string} fieldName the desired field name
* @param {string} optionName the desired option name
* @param {*} defaultValue the default value if option or field is not found.
* @returns {*}
*/
_getFieldOption(fieldName, optionName, defaultValue) {
const field = this.fieldsInfo[this.viewType][fieldName];
if (field && field.options && field.options[optionName] !== undefined) {
return field.options[optionName];
}
return defaultValue;
},
/**
* Checks whether the view has a given field.
*
* @private
* @param {string} fieldName the desired field name
* @returns {boolean}
*/
_hasField(fieldName) {
return !!this.fieldsInfo[this.viewType][fieldName];
},
});
});
|