You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
672 B
21 lines
672 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2019 Artem Rafailov <https://it-projects.info/team/Ommo73/>
|
|
# License MIT (https://opensource.org/licenses/MIT).
|
|
from odoo import api, models
|
|
|
|
|
|
class MailMessage(models.Model):
|
|
_inherit = "mail.message"
|
|
|
|
@api.multi
|
|
def message_format(self):
|
|
messages_values = super(MailMessage, self).message_format()
|
|
for i in messages_values:
|
|
if i["channel_ids"]:
|
|
i["channel_names"] = (
|
|
self.env["mail.channel"]
|
|
.browse(i["channel_ids"])
|
|
.mapped(lambda r: [r.id, "#" + r.display_name])
|
|
)
|
|
|
|
return messages_values
|