# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, models, _ class Channel(models.Model): _inherit = 'mail.channel' def _execute_command_help(self, **kwargs): super(Channel, self)._execute_command_help(**kwargs) self.env['mail.bot']._apply_logic(self, kwargs, command="help") # kwargs are not usefull but... @api.model def init_odoobot(self): if self.env.user.odoobot_state in [False, 'not_initialized']: odoobot_id = self.env['ir.model.data'].xmlid_to_res_id("base.partner_root") channel_info = self.channel_get([odoobot_id]) channel = self.browse(channel_info['id']) message = _("Hello,
Odoo's chat helps employees collaborate efficiently. I'm here to help you discover its features.
Try to send me an emoji :)") channel.sudo().message_post(body=message, author_id=odoobot_id, message_type="comment", subtype_xmlid="mail.mt_comment") self.env.user.odoobot_state = 'onboarding_emoji' return channel