diff --git a/odoo_read_messages/README.rst b/odoo_read_messages/README.rst new file mode 100755 index 000000000..6089f93fb --- /dev/null +++ b/odoo_read_messages/README.rst @@ -0,0 +1,48 @@ +.. 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 Read Messages +================== +* The "Odoo Read Messages" module helps you perform the action of reading all messages with a single click. + +Installation +============ + - www.odoo.com/documentation/17.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V17) : Dhanya B, 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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/odoo_read_messages/__init__.py b/odoo_read_messages/__init__.py new file mode 100644 index 000000000..097bdb395 --- /dev/null +++ b/odoo_read_messages/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 diff --git a/odoo_read_messages/__manifest__.py b/odoo_read_messages/__manifest__.py new file mode 100644 index 000000000..f713d2055 --- /dev/null +++ b/odoo_read_messages/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 Read Messages", + 'version': '17.0.1.0.0', + 'category': 'Discuss', + 'summary': """Read messages with a single click.""", + 'description': """This module makes it easy for you to read messages + with a single click.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['mail','base'], + 'data': [ + 'views/res_users_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': "LGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/odoo_read_messages/doc/RELEASE_NOTES.md b/odoo_read_messages/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..a3cbb6d8e --- /dev/null +++ b/odoo_read_messages/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 10.05.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Odoo Read Messages. diff --git a/odoo_read_messages/models/__init__.py b/odoo_read_messages/models/__init__.py new file mode 100644 index 000000000..2ce1fe941 --- /dev/null +++ b/odoo_read_messages/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 res_users diff --git a/odoo_read_messages/models/res_users.py b/odoo_read_messages/models/res_users.py new file mode 100644 index 000000000..3e6ca0d87 --- /dev/null +++ b/odoo_read_messages/models/res_users.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 fields, models + + +class ResUsers(models.Model): + """ Inheriting the res users model to read all messages""" + _inherit = 'res.users' + + def action_read_messages(self): + """Read all Messages""" + # Cancel exception notifications + exception_notifications = self.env['mail.notification'].sudo().search([ + ('notification_status', '=', 'exception'), + ]) + exception_notifications.write({'notification_status': 'canceled'}) + # Mark unread notifications as read + # Reading the messages from the channels. + channel_members = self.env['discuss.channel.member'].search([ + ('partner_id', '=', self.env.user.partner_id.id) + ]) + # Fetch the latest message + latest_message = self.env['mail.message'].search([ + ('model', '=', 'mail.channel'), + ('message_type', 'not in', ['notification', 'user_notification']), + ( + 'id', '>', + max(channel_members.mapped('seen_message_id.id') or [0])) + ], limit=1, order='id desc') + if latest_message: + channel_members.write({ + 'seen_message_id': latest_message.id, + 'fetched_message_id': latest_message.id, + 'last_seen_dt': fields.Datetime.now(), + }) + return { + 'type': 'ir.actions.client', + 'tag': 'reload', + } diff --git a/odoo_read_messages/static/description/assets/icons/check.png b/odoo_read_messages/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/check.png differ diff --git a/odoo_read_messages/static/description/assets/icons/chevron.png b/odoo_read_messages/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/chevron.png differ diff --git a/odoo_read_messages/static/description/assets/icons/cogs.png b/odoo_read_messages/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/cogs.png differ diff --git a/odoo_read_messages/static/description/assets/icons/consultation.png b/odoo_read_messages/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/consultation.png differ diff --git a/odoo_read_messages/static/description/assets/icons/ecom-black.png b/odoo_read_messages/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/education-black.png b/odoo_read_messages/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/education-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/hotel-black.png b/odoo_read_messages/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/license.png b/odoo_read_messages/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/license.png differ diff --git a/odoo_read_messages/static/description/assets/icons/lifebuoy.png b/odoo_read_messages/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_read_messages/static/description/assets/icons/manufacturing-black.png b/odoo_read_messages/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/pos-black.png b/odoo_read_messages/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/pos-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/puzzle.png b/odoo_read_messages/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/puzzle.png differ diff --git a/odoo_read_messages/static/description/assets/icons/restaurant-black.png b/odoo_read_messages/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/service-black.png b/odoo_read_messages/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/service-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/trading-black.png b/odoo_read_messages/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/trading-black.png differ diff --git a/odoo_read_messages/static/description/assets/icons/training.png b/odoo_read_messages/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/training.png differ diff --git a/odoo_read_messages/static/description/assets/icons/update.png b/odoo_read_messages/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/update.png differ diff --git a/odoo_read_messages/static/description/assets/icons/user.png b/odoo_read_messages/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/user.png differ diff --git a/odoo_read_messages/static/description/assets/icons/wrench.png b/odoo_read_messages/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_read_messages/static/description/assets/icons/wrench.png differ diff --git a/odoo_read_messages/static/description/assets/misc/Cybrosys R.png b/odoo_read_messages/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/Cybrosys R.png differ diff --git a/odoo_read_messages/static/description/assets/misc/categories.png b/odoo_read_messages/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/categories.png differ diff --git a/odoo_read_messages/static/description/assets/misc/check-box.png b/odoo_read_messages/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/check-box.png differ diff --git a/odoo_read_messages/static/description/assets/misc/compass.png b/odoo_read_messages/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/compass.png differ diff --git a/odoo_read_messages/static/description/assets/misc/corporate.png b/odoo_read_messages/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/corporate.png differ diff --git a/odoo_read_messages/static/description/assets/misc/customer-support.png b/odoo_read_messages/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/customer-support.png differ diff --git a/odoo_read_messages/static/description/assets/misc/cybrosys-logo.png b/odoo_read_messages/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/cybrosys-logo.png differ diff --git a/odoo_read_messages/static/description/assets/misc/features.png b/odoo_read_messages/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/features.png differ diff --git a/odoo_read_messages/static/description/assets/misc/logo.png b/odoo_read_messages/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/logo.png differ diff --git a/odoo_read_messages/static/description/assets/misc/pictures.png b/odoo_read_messages/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/pictures.png differ diff --git a/odoo_read_messages/static/description/assets/misc/pie-chart.png b/odoo_read_messages/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/pie-chart.png differ diff --git a/odoo_read_messages/static/description/assets/misc/right-arrow.png b/odoo_read_messages/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/right-arrow.png differ diff --git a/odoo_read_messages/static/description/assets/misc/star.png b/odoo_read_messages/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/star.png differ diff --git a/odoo_read_messages/static/description/assets/misc/support.png b/odoo_read_messages/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/support.png differ diff --git a/odoo_read_messages/static/description/assets/misc/whatsapp.png b/odoo_read_messages/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_read_messages/static/description/assets/misc/whatsapp.png differ diff --git a/odoo_read_messages/static/description/assets/modules/1.jpg b/odoo_read_messages/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..0b59ec131 Binary files /dev/null and b/odoo_read_messages/static/description/assets/modules/1.jpg differ diff --git a/odoo_read_messages/static/description/assets/modules/2.png b/odoo_read_messages/static/description/assets/modules/2.png new file mode 100644 index 000000000..d3589e8bd Binary files /dev/null and b/odoo_read_messages/static/description/assets/modules/2.png differ diff --git a/odoo_read_messages/static/description/assets/modules/3.png b/odoo_read_messages/static/description/assets/modules/3.png new file mode 100644 index 000000000..4548d977e Binary files /dev/null and b/odoo_read_messages/static/description/assets/modules/3.png differ diff --git a/odoo_read_messages/static/description/assets/modules/5.jpg b/odoo_read_messages/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..14962a750 Binary files /dev/null and b/odoo_read_messages/static/description/assets/modules/5.jpg differ diff --git a/odoo_read_messages/static/description/assets/modules/6.jpg b/odoo_read_messages/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..8b4d469f9 Binary files /dev/null and b/odoo_read_messages/static/description/assets/modules/6.jpg differ diff --git a/odoo_read_messages/static/description/assets/modules/banner.jpg b/odoo_read_messages/static/description/assets/modules/banner.jpg new file mode 100644 index 000000000..efebcb605 Binary files /dev/null and b/odoo_read_messages/static/description/assets/modules/banner.jpg differ diff --git a/odoo_read_messages/static/description/assets/screenshots/hero.gif b/odoo_read_messages/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..718f49156 Binary files /dev/null and b/odoo_read_messages/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_read_messages/static/description/assets/screenshots/read-1.png b/odoo_read_messages/static/description/assets/screenshots/read-1.png new file mode 100644 index 000000000..a3792b643 Binary files /dev/null and b/odoo_read_messages/static/description/assets/screenshots/read-1.png differ diff --git a/odoo_read_messages/static/description/assets/screenshots/read-3.png b/odoo_read_messages/static/description/assets/screenshots/read-3.png new file mode 100644 index 000000000..25ea44a48 Binary files /dev/null and b/odoo_read_messages/static/description/assets/screenshots/read-3.png differ diff --git a/odoo_read_messages/static/description/assets/screenshots/read_2.png b/odoo_read_messages/static/description/assets/screenshots/read_2.png new file mode 100644 index 000000000..2424587bb Binary files /dev/null and b/odoo_read_messages/static/description/assets/screenshots/read_2.png differ diff --git a/odoo_read_messages/static/description/banner.jpg b/odoo_read_messages/static/description/banner.jpg new file mode 100644 index 000000000..f90282dce Binary files /dev/null and b/odoo_read_messages/static/description/banner.jpg differ diff --git a/odoo_read_messages/static/description/icon.png b/odoo_read_messages/static/description/icon.png new file mode 100644 index 000000000..ab89be476 Binary files /dev/null and b/odoo_read_messages/static/description/icon.png differ diff --git a/odoo_read_messages/static/description/index.html b/odoo_read_messages/static/description/index.html new file mode 100755 index 000000000..fb8dec4fb --- /dev/null +++ b/odoo_read_messages/static/description/index.html @@ -0,0 +1,631 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Odoo Read Messages

+

+ Read Messages With A Single Click. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Read all messages with a single click.

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

+ By default, users can view the count of unread messages from the conversation + systray icon.

+
+
+
+
+
+
+ +
+
+

+ To read all unread messages by a single click, navigate to users form view and click + the "Read Messages" button inside the Preferences tab. +

+
+
+
+
+
+
+ +
+
+

+ After clicking the "Read Messages" button, all unread messages are marked as read + and become invisible from the + conversation systray menu.

+
+
+
+
+ +
+
+
+
Version + 17.0.1.0.0|Released on:15th January 2024 +
+

+ + Initial Commit for Hide Create|Delete|Archive|Export Options - Model Wise.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/odoo_read_messages/views/res_users_views.xml b/odoo_read_messages/views/res_users_views.xml new file mode 100644 index 000000000..1162f7ed7 --- /dev/null +++ b/odoo_read_messages/views/res_users_views.xml @@ -0,0 +1,20 @@ + + + + + res.users.inherit.odoo.read.messages + res.users + + + + +
+
+
+
+
+
+