Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions setup/web_chatt_filtering/odoo/addons/web_chatt_filtering
6 changes: 6 additions & 0 deletions setup/web_chatt_filtering/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
100 changes: 100 additions & 0 deletions web_chatt_filtering/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
====================
mail_chatt_filtering
====================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
:target: https://github.com/OCA/web/tree/15.0/web_chatt_filtering
:alt: OCA/web
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_chatt_filtering
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/162/15.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

After working with Odoo a long time and load lot of loaded data, the amount of messages displayed inside the chatter of a record start to be significantly big

This module introduces a filter in the Chatter
.. image:: https://raw.githubusercontent.com/OCA/web/15.0/web_chatt_filtering/static/img/initial_chatter_state.png

Next functionalities are provided:
* Filter messages by content

.. image:: https://raw.githubusercontent.com/OCA/web/15.0/web_chatt_filtering/static/img/filter_content.png

* Filter messages by author

.. image:: https://raw.githubusercontent.com/OCA/web/15.0/web_chatt_filtering/static/img/filter_author.png

* Reverse filtering on author

F.ex. <-admin> will show all the messages in the chatt excluding the ones of the Administrator

.. image:: https://raw.githubusercontent.com/OCA/web/15.0/web_chatt_filtering/static/img/filter_excluding_author.png

**Table of contents**

.. contents::
:local:

Usage
=====

Just installing the module is enough to have this functionality working. No configuration needed

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_chatt_filtering%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Pedro Gonzalez <pedro.gonzalez@pesol.es>

Contributors
~~~~~~~~~~~~

* `Pesol <https://www.pesol.es>`__:

* Pedro Evaristo Gonzalez Sanchez <pedro.gonzalez@pesol.es>

* Saulius Zylys <saulius.zylys@pesol.es>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/web <https://github.com/OCA/web/tree/15.0/web_chatt_filtering>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions web_chatt_filtering/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Copyright <2019> Pesol <pedro.gonzalez@pesol.es>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
28 changes: 28 additions & 0 deletions web_chatt_filtering/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright <2019> Pesol <pedro.gonzalez@pesol.es>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "mail_chatt_filtering",
"summary": """
Extend the mail_chatt functionality to have filtering by author or by
message content
""",
"category": "web",
"author": "Pedro Gonzalez <pedro.gonzalez@pesol.es> ,"
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/web",
"version": "15.0.1.0.0",
"depends": ["mail"],
"data": [],
"assets": {
"mail.assets_discuss_public": [
"web_chatt_filtering/static/src/models/chatter/chatter.esm.js"
],
"web.assets_backend": [
"web_chatt_filtering/static/src/models/chatter/chatter.esm.js"
],
"web.assets_qweb": [
"web_chatt_filtering/static/src/components/chatter/chatter.xml"
],
},
}
5 changes: 5 additions & 0 deletions web_chatt_filtering/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* `Pesol <https://www.pesol.es>`__:

* Pedro Evaristo Gonzalez Sanchez <pedro.gonzalez@pesol.es>

* Saulius Zylys <saulius.zylys@pesol.es>
19 changes: 19 additions & 0 deletions web_chatt_filtering/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
After working with Odoo a long time and load lot of loaded data, the amount of messages displayed inside the chatter of a record start to be significantly big

This module introduces a filter in the Chatter
.. image:: ../static/img/initial_chatter_state.png

Next functionalities are provided:
* Filter messages by content

.. image:: ../static/img/filter_content.png

* Filter messages by author

.. image:: ../static/img/filter_author.png

* Reverse filtering on author

F.ex. <-admin> will show all the messages in the chatt excluding the ones of the Administrator

.. image:: ../static/img/filter_excluding_author.png
1 change: 1 addition & 0 deletions web_chatt_filtering/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Just installing the module is enough to have this functionality working. No configuration needed
Loading