mirror of https://github.com/OCA/social.git
[FIX] Bug {TypeError: dict.message.hasEmailCc is not a function} during the creation of a new document.
parent
e502eb1b87
commit
a7b41f421b
|
@ -22,6 +22,15 @@ odoo.define('mail_tracking.partner_tracking', function(require){
|
||||||
hasPartnerTrackings: function () {
|
hasPartnerTrackings: function () {
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Messages do not have any email Cc values.
|
||||||
|
*
|
||||||
|
* @return {boolean}
|
||||||
|
*/
|
||||||
|
hasEmailCc: function () {
|
||||||
|
return false;
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
Message.include({
|
Message.include({
|
||||||
|
|
Loading…
Reference in New Issue