diff --git a/odoo_advanced_chatter/README.rst b/odoo_advanced_chatter/README.rst new file mode 100644 index 000000000..60be9c0ee --- /dev/null +++ b/odoo_advanced_chatter/README.rst @@ -0,0 +1,44 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Odoo Advanced Chatter +===================== +This module facilitates effortless scheduling of logs and sending messages. +Additionally, it streamlines recipient management by allowing easy selection from the followers list when sending messages. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V17) NIHALA KP, + (V18) Gayathri V +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/odoo_advanced_chatter/__init__.py b/odoo_advanced_chatter/__init__.py new file mode 100644 index 000000000..3b3ee6805 --- /dev/null +++ b/odoo_advanced_chatter/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models +from . import wizard diff --git a/odoo_advanced_chatter/__manifest__.py b/odoo_advanced_chatter/__manifest__.py new file mode 100644 index 000000000..bc9d39c81 --- /dev/null +++ b/odoo_advanced_chatter/__manifest__.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Odoo Advanced Chatter', + 'version': '18.0.1.0.0', + 'category': 'Discuss', + 'summary': 'Schedule Log note and Send Message in Chatter', + 'description': """We have the capability to schedule log notes and send + messages within Chatter.Additionally, followers can be managed both from + the followers list and directly within the Schedule form. We can manage the + users in the reply-to options.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['web', 'base', 'mail'], + 'data': [ + 'security/ir.model.access.csv', + 'data/ir_cron_data.xml', + 'views/schedule_log_views.xml', + 'wizard/mail_wizard_recipients_views.xml' + ], + "assets": { + "web.assets_backend": + [ + 'odoo_advanced_chatter/static/src/xml/schedule_log.xml', + 'odoo_advanced_chatter/static/src/js/schedule_mail.js', + 'odoo_advanced_chatter/static/src/xml/followers_check.xml', + 'odoo_advanced_chatter/static/src/js/recipient_list.js', + 'odoo_advanced_chatter/static/src/xml/chatter.xml', + 'odoo_advanced_chatter/static/src/js/chatter.js' + ] + }, + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/odoo_advanced_chatter/data/ir_cron_data.xml b/odoo_advanced_chatter/data/ir_cron_data.xml new file mode 100644 index 000000000..0a4ebd25c --- /dev/null +++ b/odoo_advanced_chatter/data/ir_cron_data.xml @@ -0,0 +1,15 @@ + + + + + + Schedule Log Note + + code + model.schedule() + + 1 + minutes + + + diff --git a/odoo_advanced_chatter/doc/RELEASE_NOTES.md b/odoo_advanced_chatter/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..01e9b5ab9 --- /dev/null +++ b/odoo_advanced_chatter/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 18.10.2024 +#### Version 18.0.1.0.0 +#### ADD +- Initial Commit Odoo Advanced Chatter diff --git a/odoo_advanced_chatter/models/__init__.py b/odoo_advanced_chatter/models/__init__.py new file mode 100644 index 000000000..bac65f5b7 --- /dev/null +++ b/odoo_advanced_chatter/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import mail_thread +from . import schedule_log diff --git a/odoo_advanced_chatter/models/mail_thread.py b/odoo_advanced_chatter/models/mail_thread.py new file mode 100644 index 000000000..6355bd596 --- /dev/null +++ b/odoo_advanced_chatter/models/mail_thread.py @@ -0,0 +1,198 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, models, _, tools +from markupsafe import Markup, escape + +import logging + +_logger = logging.getLogger(__name__) + + +class Message(models.AbstractModel): + _inherit = "mail.thread" + + @api.returns('mail.message', lambda value: value.id) + def message_post(self, *, + body='', subject=None, message_type='notification', + email_from=None, author_id=None, parent_id=False, + subtype_xmlid=None, subtype_id=False, partner_ids=None, + attachments=None, attachment_ids=None, body_is_html=False, + **kwargs): + """ Post a new message in an existing thread, returning the new mail.message. + + :param str|Markup body: body of the message, str content will be escaped, Markup + for html body + :param str subject: subject of the message + :param str message_type: see mail_message.message_type field. Can be anything but + user_notification, reserved for message_notify + :param str email_from: from address of the author. See ``_message_compute_author`` + that uses it to make email_from / author_id coherent; + :param int author_id: optional ID of partner record being the author. See + ``_message_compute_author`` that uses it to make email_from / author_id coherent; + :param int parent_id: handle thread formation + :param str subtype_xmlid: optional xml id of a mail.message.subtype to + fetch, will force value of subtype_id; + :param int subtype_id: subtype_id of the message, used mainly for followers + notification mechanism; + :param list(int) partner_ids: partner_ids to notify in addition to partners + computed based on subtype / followers matching; + :param list(tuple(str,str), tuple(str,str, dict)) attachments : list of attachment + tuples in the form ``(name,content)`` or ``(name,content, info)`` where content + is NOT base64 encoded; + :param list attachment_ids: list of existing attachments to link to this message + Should not be a list of commands. Attachment records attached to mail + composer will be attached to the related document. + :param bool body_is_html: indicates body should be threated as HTML even if str + to be used only for RPC calls + + Extra keyword arguments will be used either + * as default column values for the new mail.message record if they match + mail.message fields; + * propagated to notification methods if not; + + :return record: newly create mail.message + """ + self.ensure_one() + self._raise_for_invalid_parameters( + set(kwargs.keys()), + forbidden_names={'model', 'res_id', 'subtype'} + ) + if self._name == 'mail.thread' or not self.id: + raise ValueError( + _("Posting a message should be done on a business document. Use message_notify to send a notification to an user.")) + if message_type == 'user_notification': + raise ValueError( + _("Use message_notify to send a notification to an user.")) + if attachments: + # attachments should be a list (or tuples) of 3-elements list (or tuple) + format_error = not tools.is_list_of(attachments, + list) and not tools.is_list_of( + attachments, tuple) + if not format_error: + format_error = not all( + len(attachment) in {2, 3} for attachment in attachments) + if format_error: + raise ValueError( + _('Posting a message should receive attachments as a list of list or tuples (received %(aids)s)', + aids=repr(attachment_ids), + ) + ) + if attachment_ids and not tools.is_list_of(attachment_ids, int): + raise ValueError( + _('Posting a message should receive attachments records as a list of IDs (received %(aids)s)', + aids=repr(attachment_ids), + ) + ) + attachment_ids = list(attachment_ids or []) + if partner_ids and not tools.is_list_of(partner_ids, int): + raise ValueError( + _('Posting a message should receive partners as a list of IDs (received %(pids)s)', + pids=repr(partner_ids), + ) + ) + partner_ids = list(partner_ids or []) + msg_kwargs = {key: val for key, val in kwargs.items() + if key in self.env['mail.message']._fields} + notif_kwargs = {key: val for key, val in kwargs.items() + if key not in msg_kwargs} + self = self._fallback_lang() + guest = self.env['mail.guest']._get_guest_from_context() + if self.env.user._is_public() and guest: + author_guest_id = guest.id + author_id, email_from = False, False + else: + author_guest_id = False + author_id, email_from = self._message_compute_author(author_id, + email_from, + raise_on_email=True) + if subtype_xmlid: + subtype_id = self.env['ir.model.data']._xmlid_to_res_id( + subtype_xmlid) + if not subtype_id: + subtype_id = self.env['ir.model.data']._xmlid_to_res_id( + 'mail.mt_note') + if self._context.get('mail_post_autofollow') and partner_ids: + self.message_subscribe(partner_ids=list(partner_ids)) + msg_values = dict(msg_kwargs) + if 'email_add_signature' not in msg_values: + msg_values['email_add_signature'] = True + if not msg_values.get('record_name'): + msg_values['record_name'] = self.sudo().display_name + if body_is_html and self.user_has_groups("base.group_user"): + _logger.warning( + "Posting HTML message using body_is_html=True, use a Markup object instead (user: %s)", + self.env.user.id) + body = Markup(body) + msg_values.update({ + # author + 'author_id': author_id, + 'author_guest_id': author_guest_id, + 'email_from': email_from, + # document + 'model': self._name, + 'res_id': self.id, + # content + 'body': escape(body), + 'message_type': message_type, + 'parent_id': self._message_compute_parent_id(parent_id), + 'subject': subject or False, + 'subtype_id': subtype_id, + # recipients + 'partner_ids': partner_ids, + }) + reply_to_id = self.env['ir.config_parameter'].get_param('reply_to') + author1 = self.env['res.users'].browse(int(reply_to_id)) + email_from1 = author1.email_formatted + if 'record_alias_domain_id' not in msg_values: + msg_values['record_alias_domain_id'] = \ + self.sudo()._mail_get_alias_domains( + default_company=self.env.company)[self.id].id + if 'record_company_id' not in msg_values: + msg_values['record_company_id'] = \ + self._mail_get_companies(default=self.env.company)[self.id].id + if 'reply_to' not in msg_values: + if author1 == self.env.user.id: + msg_values['reply_to'] = \ + self._notify_get_reply_to(default=email_from)[self.id] + else: + msg_values['reply_to'] = \ + self._notify_get_reply_to(default=email_from1)[self.id] + msg_values.update( + self._process_attachments_for_post(attachments, attachment_ids, + msg_values) + ) + new_message = self._message_create([msg_values]) + author_subscribe = (not self._context.get('mail_create_nosubscribe') and + msg_values['message_type'] != 'notification') + if author_subscribe: + real_author_id = False + if self.env.user.active: + real_author_id = self.env.user.partner_id.id + elif msg_values['author_id']: + author = self.env['res.partner'].browse(msg_values['author_id']) + if author.active: + real_author_id = author.id + if real_author_id: + self._message_subscribe(partner_ids=[real_author_id]) + self._message_post_after_hook(new_message, msg_values) + self._notify_thread(new_message, msg_values, **notif_kwargs) + return new_message diff --git a/odoo_advanced_chatter/models/schedule_log.py b/odoo_advanced_chatter/models/schedule_log.py new file mode 100644 index 000000000..c5f3efbc3 --- /dev/null +++ b/odoo_advanced_chatter/models/schedule_log.py @@ -0,0 +1,170 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from email.utils import formataddr + +from odoo import models, fields +import datetime + + +class ScheduleLog(models.Model): + """To schedule the log note and message inside the chatter""" + _name = 'schedule.log' + _description = "Schedule log note in chatter" + + body = fields.Html(string="Body", help="Content of the log", required="1") + partner_ids = fields.Many2many('res.partner', string='Recipients', + help='To whom the log is Mentioned') + time = fields.Datetime( + default=lambda self: fields.datetime.now().strftime( + '%Y-%m-%d %H:%M:%S'), + string="Scheduled Time", + help="Time at which the log is scheduled", + required="1") + attachment_ids = fields.Many2many(comodel_name='ir.attachment', + string="Attachments", help="Attachments") + is_log = fields.Boolean(string='Is Log', default=False, + help="To check whether log note or scheduled " + "messages") + model = fields.Char(string='Related Model', help="Related Model") + model_reference = fields.Integer(string="Related Document Id", + help="Related Document Id") + status = fields.Selection([('draft', "Schedule"), ('post', "Post")], + string='Status', default='draft', + help="Status of the Message") + + def action_save(self): + """Display notification when messages are scheduled""" + if self.body: + self.env.registry.clear_cache() + current_time = fields.Datetime.now().replace(second=0) + scheduled_time = fields.Datetime.from_string(self.time).replace( + second=0) + time_difference = abs( + (current_time - scheduled_time).total_seconds()) + acceptable_difference = 5 + if time_difference <= acceptable_difference: + user_id = self.env.user.commercial_partner_id + partner_ids = self.partner_ids.ids + if user_id.id in self.partner_ids.ids: + partner_ids.remove(user_id.id) + model = self.env[self.model].sudo().browse( + self.model_reference) + if not self.is_log: + message = model.message_post( + author_id=self.create_uid.partner_id.id, + email_from=self.create_uid.partner_id.email, + body=self.body, + attachment_ids=self.attachment_ids.ids, + message_type='comment', + subtype_xmlid='mail.mt_comment', + ) + for mail in message.mail_ids: + mail.send() + self.status = 'post' + return { + 'type': 'ir.actions.client', + 'tag': 'reload_context', + } + + else: + message = model.message_post( + author_id=self.create_uid.partner_id.id, + email_from=self.create_uid.partner_id.email, + body=self.body, + partner_ids=partner_ids, + attachment_ids=self.attachment_ids.ids, + reply_to=formataddr((self.create_uid.partner_id.name, 'email.from.1@test.example.com')) + ) + + message.notification_ids = [fields.Command.clear()] + message.notification_ids = [fields.Command.create({ + 'res_partner_id': pid + }) for pid in partner_ids] + self.status = 'post' + return { + 'type': 'ir.actions.client', + 'tag': 'reload_context', + } + else: + return { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'title': 'Title', + 'message': "Message scheduled successfully.", + 'sticky': True, + 'next': {'type': 'ir.actions.act_window_close'}, + } + } + + def schedule(self): + """To schedule the log note""" + date = datetime.datetime.now() + date_sec = date.replace(second=0).strftime('%Y-%m-%d %H:%M:%S') + date_max = date.replace(second=59).strftime('%Y-%m-%d %H:%M:%S') + scheduled_lognotes = self.env['schedule.log'].search( + [ + ('status', '=', 'draft'), + ('time', '>=', date_sec), + ('time', '<=', date_max), + ] + ) + for rec in scheduled_lognotes: + user_id = rec.env.user.commercial_partner_id + partner_ids = rec.partner_ids.ids + if user_id.id in rec.partner_ids.ids: + partner_ids.remove(user_id.id) + model = self.env[rec.model].sudo().browse( + rec.model_reference) + if not rec.is_log: + message = model.message_post( + author_id=rec.create_uid.partner_id.id, + email_from=rec.create_uid.partner_id.email, + body=rec.body, + attachment_ids=rec.attachment_ids.ids, + message_type='comment', + subtype_xmlid='mail.mt_comment' + ) + for mail in message.mail_ids: + mail.send() + rec.status = 'post' + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } + else: + message = model.message_post( + author_id=rec.create_uid.partner_id.id, + email_from=rec.create_uid.partner_id.email, + body=rec.body, + partner_ids=partner_ids, + attachment_ids=rec.attachment_ids.ids, + ) + message.notification_ids = [fields.Command.clear()] + message.notification_ids = [fields.Command.create({ + 'res_partner_id': pid + }) for pid in partner_ids] + rec.status = 'post' + return { + 'type': 'ir.actions.client', + 'tag': 'reload_context', + } diff --git a/odoo_advanced_chatter/security/ir.model.access.csv b/odoo_advanced_chatter/security/ir.model.access.csv new file mode 100644 index 000000000..fb297d87d --- /dev/null +++ b/odoo_advanced_chatter/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_schedule_log,access_schedule_log,model_schedule_log,base.group_user,1,1,1,1 +access_mail_wizard_recipient,access_mail_wizard_recipient,model_mail_wizard_recipient,base.group_user,1,1,1,1 diff --git a/odoo_advanced_chatter/static/description/assets/cybro-icon.png b/odoo_advanced_chatter/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/cybro-icon.png differ diff --git a/odoo_advanced_chatter/static/description/assets/cybro-odoo.png b/odoo_advanced_chatter/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/cybro-odoo.png differ diff --git a/odoo_advanced_chatter/static/description/assets/h2.png b/odoo_advanced_chatter/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/h2.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/arrows-repeat.svg b/odoo_advanced_chatter/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-1.png b/odoo_advanced_chatter/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/banner-1.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-2.svg b/odoo_advanced_chatter/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-bg.png b/odoo_advanced_chatter/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/banner-bg.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-bg.svg b/odoo_advanced_chatter/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-call.svg b/odoo_advanced_chatter/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-mail.svg b/odoo_advanced_chatter/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-pattern.svg b/odoo_advanced_chatter/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/banner-promo.svg b/odoo_advanced_chatter/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/brand-pair.svg b/odoo_advanced_chatter/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/capture (1).png b/odoo_advanced_chatter/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/capture (1).png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/check.png b/odoo_advanced_chatter/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/check.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/chevron.png b/odoo_advanced_chatter/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/chevron.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/close-icon.svg b/odoo_advanced_chatter/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/cogs.png b/odoo_advanced_chatter/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/cogs.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/collabarate-icon.svg b/odoo_advanced_chatter/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/consultation.png b/odoo_advanced_chatter/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/consultation.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/cybro-logo.png b/odoo_advanced_chatter/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/cybro-logo.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/down.svg b/odoo_advanced_chatter/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/odoo_advanced_chatter/static/description/assets/icons/ecom-black.png b/odoo_advanced_chatter/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/education-black.png b/odoo_advanced_chatter/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/education-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/faq.png b/odoo_advanced_chatter/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/faq.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/feature-icon.svg b/odoo_advanced_chatter/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/feature.png b/odoo_advanced_chatter/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/feature.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/gear.svg b/odoo_advanced_chatter/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/hero.gif b/odoo_advanced_chatter/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..3ca58e0ce Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/hero.gif differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/hire-odoo.svg b/odoo_advanced_chatter/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/hotel-black.png b/odoo_advanced_chatter/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/img.png b/odoo_advanced_chatter/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/img.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/license.png b/odoo_advanced_chatter/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/license.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/life-ring-icon.svg b/odoo_advanced_chatter/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/lifebuoy.png b/odoo_advanced_chatter/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/mail.svg b/odoo_advanced_chatter/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/manufacturing-black.png b/odoo_advanced_chatter/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/notes.png b/odoo_advanced_chatter/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/notes.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/notification icon.svg b/odoo_advanced_chatter/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/odoo-consultancy.svg b/odoo_advanced_chatter/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/odoo-licencing.svg b/odoo_advanced_chatter/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/odoo-logo.png b/odoo_advanced_chatter/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/odoo-logo.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/patter.svg b/odoo_advanced_chatter/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/pattern1.png b/odoo_advanced_chatter/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/pattern1.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/photo-capture.png b/odoo_advanced_chatter/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/photo-capture.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/pos-black.png b/odoo_advanced_chatter/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/pos-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/puzzle-piece-icon.svg b/odoo_advanced_chatter/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/puzzle.png b/odoo_advanced_chatter/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/puzzle.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/replace-icon.svg b/odoo_advanced_chatter/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/restaurant-black.png b/odoo_advanced_chatter/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/screenshot-main.png b/odoo_advanced_chatter/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/screenshot-main.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/screenshot.png b/odoo_advanced_chatter/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/screenshot.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/service-black.png b/odoo_advanced_chatter/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/service-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/skype-fill.svg b/odoo_advanced_chatter/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/skype.png b/odoo_advanced_chatter/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/skype.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/skype.svg b/odoo_advanced_chatter/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/star-1.svg b/odoo_advanced_chatter/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/star-2.svg b/odoo_advanced_chatter/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/support.png b/odoo_advanced_chatter/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/support.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/test-1 - Copy.png b/odoo_advanced_chatter/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/test-1 - Copy.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/test-1.png b/odoo_advanced_chatter/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/test-1.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/test-2.png b/odoo_advanced_chatter/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/test-2.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/trading-black.png b/odoo_advanced_chatter/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/trading-black.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/training.png b/odoo_advanced_chatter/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/training.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/translate.svg b/odoo_advanced_chatter/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/update.png b/odoo_advanced_chatter/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/update.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/user.png b/odoo_advanced_chatter/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/user.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/video.png b/odoo_advanced_chatter/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/video.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/whatsapp.png b/odoo_advanced_chatter/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/whatsapp.png differ diff --git a/odoo_advanced_chatter/static/description/assets/icons/wrench-icon.svg b/odoo_advanced_chatter/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/icons/wrench.png b/odoo_advanced_chatter/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/icons/wrench.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/Cybrosys R.png b/odoo_advanced_chatter/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/Cybrosys R.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/categories.png b/odoo_advanced_chatter/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/categories.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/check-box.png b/odoo_advanced_chatter/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/check-box.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/compass.png b/odoo_advanced_chatter/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/compass.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/corporate.png b/odoo_advanced_chatter/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/corporate.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/customer-support.png b/odoo_advanced_chatter/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/customer-support.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/cybrosys-logo.png b/odoo_advanced_chatter/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/cybrosys-logo.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/email.svg b/odoo_advanced_chatter/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/misc/features.png b/odoo_advanced_chatter/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/features.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/logo.png b/odoo_advanced_chatter/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/logo.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/phone.svg b/odoo_advanced_chatter/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_advanced_chatter/static/description/assets/misc/pictures.png b/odoo_advanced_chatter/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/pictures.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/pie-chart.png b/odoo_advanced_chatter/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/pie-chart.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/right-arrow.png b/odoo_advanced_chatter/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/right-arrow.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/star (1) 2.svg b/odoo_advanced_chatter/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/misc/star.png b/odoo_advanced_chatter/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/star.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/support (1) 1.svg b/odoo_advanced_chatter/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/misc/support-email.svg b/odoo_advanced_chatter/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/misc/support.png b/odoo_advanced_chatter/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/support.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/tick-mark.svg b/odoo_advanced_chatter/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/misc/whatsapp 1.svg b/odoo_advanced_chatter/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/misc/whatsapp.png b/odoo_advanced_chatter/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/misc/whatsapp.png differ diff --git a/odoo_advanced_chatter/static/description/assets/misc/whatsapp.svg b/odoo_advanced_chatter/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/odoo_advanced_chatter/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_advanced_chatter/static/description/assets/modules/1.gif b/odoo_advanced_chatter/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/1.gif differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/1.jpg b/odoo_advanced_chatter/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..08bbafeb6 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/1.jpg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/2.gif b/odoo_advanced_chatter/static/description/assets/modules/2.gif new file mode 100644 index 000000000..d19e2b352 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/2.gif differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/2.jpg b/odoo_advanced_chatter/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..efebcb605 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/2.jpg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/2.png b/odoo_advanced_chatter/static/description/assets/modules/2.png new file mode 100644 index 000000000..a1209a01f Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/2.png differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/3.jpg b/odoo_advanced_chatter/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..3d171226b Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/3.jpg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/3.png b/odoo_advanced_chatter/static/description/assets/modules/3.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/3.png differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/4.jpg b/odoo_advanced_chatter/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..1f3f2e27f Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/4.jpg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/4.png b/odoo_advanced_chatter/static/description/assets/modules/4.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/4.png differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/5.jpg b/odoo_advanced_chatter/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..0db717519 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/5.jpg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/5.png b/odoo_advanced_chatter/static/description/assets/modules/5.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/5.png differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/6.jpg b/odoo_advanced_chatter/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/6.jpg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/module_image (1).jpeg b/odoo_advanced_chatter/static/description/assets/modules/module_image (1).jpeg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/module_image (1).jpeg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/module_image (1).png b/odoo_advanced_chatter/static/description/assets/modules/module_image (1).png new file mode 100644 index 000000000..0dea4f332 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/module_image (1).png differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/module_image (2).png b/odoo_advanced_chatter/static/description/assets/modules/module_image (2).png new file mode 100644 index 000000000..a5dc79613 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/module_image (2).png differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/module_image-1.jpeg b/odoo_advanced_chatter/static/description/assets/modules/module_image-1.jpeg new file mode 100644 index 000000000..31f066e9c Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/module_image-1.jpeg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/module_image.jpeg b/odoo_advanced_chatter/static/description/assets/modules/module_image.jpeg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/module_image.jpeg differ diff --git a/odoo_advanced_chatter/static/description/assets/modules/module_image.png b/odoo_advanced_chatter/static/description/assets/modules/module_image.png new file mode 100644 index 000000000..612be4b77 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/modules/module_image.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/1.png b/odoo_advanced_chatter/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..5ab89af7a Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/1.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/10.png b/odoo_advanced_chatter/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..84a36102c Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/10.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/11.png b/odoo_advanced_chatter/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..246c47c5c Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/11.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/12.png b/odoo_advanced_chatter/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..2283ca728 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/12.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/13.png b/odoo_advanced_chatter/static/description/assets/screenshots/13.png new file mode 100644 index 000000000..e305d3276 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/13.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/14.png b/odoo_advanced_chatter/static/description/assets/screenshots/14.png new file mode 100644 index 000000000..1053e9020 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/14.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/15.png b/odoo_advanced_chatter/static/description/assets/screenshots/15.png new file mode 100644 index 000000000..a8f59b6fe Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/15.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/16.png b/odoo_advanced_chatter/static/description/assets/screenshots/16.png new file mode 100644 index 000000000..2dede2bc5 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/16.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/18.png b/odoo_advanced_chatter/static/description/assets/screenshots/18.png new file mode 100644 index 000000000..3be628150 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/18.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/2.png b/odoo_advanced_chatter/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..1b9ecf852 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/2.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/3.png b/odoo_advanced_chatter/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..9fd094334 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/3.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/4.png b/odoo_advanced_chatter/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..b2fd3e41a Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/4.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/5.png b/odoo_advanced_chatter/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..2da246811 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/5.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/6.png b/odoo_advanced_chatter/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..170ec8bda Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/6.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/7.png b/odoo_advanced_chatter/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..65e959c26 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/7.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/8.png b/odoo_advanced_chatter/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..666c20a48 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/8.png differ diff --git a/odoo_advanced_chatter/static/description/assets/screenshots/9.png b/odoo_advanced_chatter/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..0aad62324 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/screenshots/9.png differ diff --git a/odoo_advanced_chatter/static/description/assets/y18.jpg b/odoo_advanced_chatter/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/odoo_advanced_chatter/static/description/assets/y18.jpg differ diff --git a/odoo_advanced_chatter/static/description/banner.jpg b/odoo_advanced_chatter/static/description/banner.jpg new file mode 100644 index 000000000..594105ab2 Binary files /dev/null and b/odoo_advanced_chatter/static/description/banner.jpg differ diff --git a/odoo_advanced_chatter/static/description/icon.png b/odoo_advanced_chatter/static/description/icon.png new file mode 100644 index 000000000..1b476b0f9 Binary files /dev/null and b/odoo_advanced_chatter/static/description/icon.png differ diff --git a/odoo_advanced_chatter/static/description/index.html b/odoo_advanced_chatter/static/description/index.html new file mode 100644 index 000000000..13c7ec721 --- /dev/null +++ b/odoo_advanced_chatter/static/description/index.html @@ -0,0 +1,1303 @@ + + + + + + Odoo Advanced Chatter + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ This module simplifies log scheduling, enables + easy message sending, and streamlines recipient + selection from the followers list. +

+

Odoo Advanced Chatter +

+
+
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+

Key + Highlights

+
+
+
+
+ +
+
+ Schedule Log Notes +
+
+
+
+
+
+ +
+
+ Schedule Send Message. +
+
+
+
+
+
+ +
+
+ Manage Followers. +
+
+
+
+
+
+ +
+
+ Manage Recipients. +
+
+
+
+
+ +
+
+
+ Odoo Advanced Chatter +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Add button inside the chatter schedule send message and log notes. + +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + A wizard, accessible by clicking the icon, opens up, providing a user-friendly interface for setting the date. + +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + We can see the scheduled message in the chatter. + +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + Clicking the icon within the log note opens a wizard, facilitating the scheduling of the log note. + +

+
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+
+

+ + An added feature includes a checkbox in the followers list, offering the option to disable it if one chooses not to send a message. + +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ In the recipient list, the disabled option is no longer visible, signifying its removal. + +

+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+

+ To manage the reply-to options, create an icon inside Chatter. + +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ + A wizard is opened where we can choose the user to whom the reply is to be sent. + +

+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+

+ + We can send the message. + +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Message View + +

+

+ Go to Settings -> Technical -> Messages. Here, you can view the messages you have sent. In the reply-to options, you will see the user we specified. +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ We can the same corresponding changes in the Mail details also. + +

+
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+

+ This module allows for the + scheduling of log notes within + the Chatter.

+
+ +
+
+
+
+
+
+ +
+

+ This module allows for the + scheduling of Send Messages + within the Chatter .

+
+
+
+
+
+
+
+ +
+

+ Recipients can be managed + seamlessly from the Followers + list when sending messages using + this module.

+
+ +
+
+
+
+
+
+ +
+

+ We can manage recipients in the Reply Mail.

+
+
+
+
+
+
+
+
+
+
+ +
+ +
+ +
+

+ While configuring a + backup, selecting + the Zip option will + include the + filestore in the + backup, while + choosing the Dump + option will create a + backup without the + filestore. +

+
+
+ +
+ +
+

+ Enable the "Remove + Old Backups" option + in the backup + creation view to + automatically delete + previous backups + based on the number + of days specified. +

+
+
+ +
+ +
+

+ Enable the "Notify + User" option and + specify a contact to + receive an email + containing a + detailed report with + the failure reason + and backup details. + This option will + also send an email + upon successful + backup. +

+
+
+ +
+ +
+

+ Select the backup + destination as local + storage and specify + a backup path to a + location on the + system to create + backups on your own + system. +

+
+
+
+ +
+
+
+
+
+
+ +
+
+

+ Latest Release 18.0.1.0.0 +

+ + 26th September, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + + + + +
+

+ Our Services

+ +
+
+ +
+
+ .... +
+
+ +
+ +
+
+ + + + + + diff --git a/odoo_advanced_chatter/static/src/js/chatter.js b/odoo_advanced_chatter/static/src/js/chatter.js new file mode 100644 index 000000000..49b231b91 --- /dev/null +++ b/odoo_advanced_chatter/static/src/js/chatter.js @@ -0,0 +1,33 @@ +/** @odoo-module **/ +import { Chatter } from "@mail/chatter/web_portal/chatter"; +import { patch } from "@web/core/utils/patch"; +import { _t } from "@web/core/l10n/translation"; +import { useService } from "@web/core/utils/hooks"; +//patch the class ChatterContainer to added the click function +patch(Chatter.prototype ,{ + setup() { + super.setup(); + this.orm = useService("orm"); + this.orm.call( + 'mail.wizard.recipient', + 'get_user', + [this.env.model.config.context.uid] + ); + }, + replyTo(){ + //-----On clicking thr reply to icon a wizard is opened to select the recipient + return this.store.env.services.action.doAction({ + type: "ir.actions.act_window", + res_model: "mail.wizard.recipient", + view_mode: "form", + views: [[false, "form"]], + name: _t("Reply To"), + target: "new", + context: { + default_model: this.props.threadModel, + default_id: this.props.threadId, + default_partner_id:this.env.model.config.context.uid, + }, + }); + } +}); diff --git a/odoo_advanced_chatter/static/src/js/recipient_list.js b/odoo_advanced_chatter/static/src/js/recipient_list.js new file mode 100644 index 000000000..2c71a58ba --- /dev/null +++ b/odoo_advanced_chatter/static/src/js/recipient_list.js @@ -0,0 +1,24 @@ +/** @odoo-module **/ +import { FollowerList } from "@mail/core/web/follower_list"; +import { patch } from "@web/core/utils/patch"; +import { useState } from "@odoo/owl"; +//----select the followers from the list +patch(FollowerList.prototype, { + setup() { + super.setup(); + this.state = useState({ + id:[] + }); + }, + async check(ev, follower){ + //-----To include the newly selected followers into recipients list + var index = this.state.id.indexOf(follower.partner.id) + if (this.state.id.includes(follower.partner.id)){ + this.state.id.splice(index, 1) + } + else{ + this.state.id.push(follower.partner.id) + } + this.threadService.check = this.state.id + } +}) diff --git a/odoo_advanced_chatter/static/src/js/schedule_mail.js b/odoo_advanced_chatter/static/src/js/schedule_mail.js new file mode 100644 index 000000000..6e138875a --- /dev/null +++ b/odoo_advanced_chatter/static/src/js/schedule_mail.js @@ -0,0 +1,97 @@ +/** @odoo-module **/ +import { Composer } from "@mail/core/common/composer"; +import { patch } from "@web/core/utils/patch"; +import { prettifyMessageContent, escapeAndCompactTextContent } from "@mail/utils/common/format"; +import { useRef } from "@odoo/owl"; +import { useService } from "@web/core/utils/hooks"; +patch(Composer.prototype, { + setup() { + super.setup(); + this.orm = useService("orm"); + this.orm.call( + 'mail.wizard.recipient', + 'get_user', + [this.env.model.config.context.uid] + ) + }, + async scheduleLogNote(){ + // ------to schedule lognote ------------- + const model = this.thread.model; + const id = this.thread.id; + const message = this.props.composer.textInputContent; + const attachments = this.props.composer.attachments.map((attachment) => attachment.id); + const recipient = this.thread.recipients; + const mentioned_list = []; + const body = this.props.composer.text; + const validMentions = this.store.getMentionsFromText(body, { + mentionedChannels: this.props.composer.mentionedChannels, + mentionedPartners: this.props.composer.mentionedPartners, + }); + console.log(validMentions,'lopppppp') + validMentions.partners.forEach(mentions => { + mentioned_list.push(mentions.id); + }); + // For followers list + var followers_list = []; + this.props.composer.thread.followers.forEach(follower => { + followers_list.push(follower.partner.id); + }); + if (recipient){ + recipient.forEach(item=>{ + const index = followers_list.indexOf(item); + if (index !== -1) { + followers_list.splice(index, 1); + } + }) + } + if (this.props.type === "note" ){ + const action = { + type: 'ir.actions.act_window', + res_model:'schedule.log', + domain: [], + views: [ [false, "form"],[false, "list"],], + name: "Schedule log", + target: 'new', + context: { + default_body: await prettifyMessageContent(message, validMentions), + default_attachment_ids:attachments , + default_partner_ids:mentioned_list, + default_is_log:1, + default_model:model, + default_model_reference:id, + default_subtype_xmlid: "mail.mt_note", + }, + }; + this.env.services.action.doAction( + action, + { + } + ); + this.clear() + } + else{ + const action = { + type: 'ir.actions.act_window', + res_model:'schedule.log', + domain: [], + views: [ [false, "form"],[false, "list"],], + name: "Schedule Message", + target: 'new', + context: { + default_body:message, + default_attachment_ids:attachments , + default_partner_ids:followers_list, + default_is_log:0, + default_model:model, + default_model_reference:id, + }, + }; + this.env.services.action.doAction( + action, + { + } + ); + this.clear() + } + } +}) diff --git a/odoo_advanced_chatter/static/src/xml/chatter.xml b/odoo_advanced_chatter/static/src/xml/chatter.xml new file mode 100644 index 000000000..9832a2314 --- /dev/null +++ b/odoo_advanced_chatter/static/src/xml/chatter.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/src/xml/followers_check.xml b/odoo_advanced_chatter/static/src/xml/followers_check.xml new file mode 100644 index 000000000..79e89961a --- /dev/null +++ b/odoo_advanced_chatter/static/src/xml/followers_check.xml @@ -0,0 +1,10 @@ + + + + + + + + + diff --git a/odoo_advanced_chatter/static/src/xml/schedule_log.xml b/odoo_advanced_chatter/static/src/xml/schedule_log.xml new file mode 100644 index 000000000..59efc37c6 --- /dev/null +++ b/odoo_advanced_chatter/static/src/xml/schedule_log.xml @@ -0,0 +1,13 @@ + + + + + +