blob: 435761a91efae0cc0cb0f0d53f9730ac97230347 (
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
|
odoo.define('hr/static/src/models/messaging/messaging.js', function (require) {
'use strict';
const {
registerInstancePatchModel,
} = require('mail/static/src/model/model_core.js');
registerInstancePatchModel('mail.messaging', 'hr/static/src/models/messaging/messaging.js', {
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
/**
* @override
* @param {integer} [param0.employeeId]
*/
async getChat({ employeeId }) {
if (employeeId) {
const employee = this.env.models['hr.employee'].insert({ id: employeeId });
return employee.getChat();
}
return this._super(...arguments);
},
/**
* @override
*/
async openProfile({ id, model }) {
if (model === 'hr.employee' || model === 'hr.employee.public') {
const employee = this.env.models['hr.employee'].insert({ id });
return employee.openProfile();
}
return this._super(...arguments);
},
});
});
|