Skip to content

Commit

Permalink
🚑 sent messages displaying issue
Browse files Browse the repository at this point in the history
  • Loading branch information
KolushovAlexandr committed Sep 30, 2019
1 parent f2c1217 commit 4c474ee
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mail_sent/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Copyright 2016 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# Copyright 2019 Kolushov Alexandr <https://it-projects.info/team/KolushovAlexandr>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
{
"name": "Sentbox",
"summary": """Quick way to find sent messages""",
"category": "Discuss",
"images": ['images/menu.png'],
"version": "12.0.1.1.0",
"version": "12.0.1.1.1",

"author": "IT-Projects LLC, Ivan Yelizariev, Pavel Romanchenko",
"support": "[email protected]",
Expand Down
5 changes: 5 additions & 0 deletions mail_sent/doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
`1.1.1`
-------

- **Imp:** Not all channel messages are shown if page was refreshed on a channel screen

`1.1.0`
-------

Expand Down
15 changes: 15 additions & 0 deletions mail_sent/static/src/js/sent.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* # Copyright 2018 Artyom Losev <https://it-projects.info/team/ArtyomLosev>
# Copyright 2019 Kolushov Alexandr <https://it-projects.info/team/KolushovAlexandr>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html). */
odoo.define('mail_sent.sent', function (require) {
"use strict";

Expand All @@ -23,6 +26,18 @@ Manager.include({
});
}
},

addMessage: function (data, options) {
var message = this.getMessage(data.id);
if (message) {
var current_threads = message._threadIDs;
var new_channels = data.channel_ids;
if (_.without(new_channels, ...current_threads).length) {
message._threadIDs = _.union(new_channels, current_threads);
}
}
return this._super(data, options);
},
});

SearchableThread.include({
Expand Down

0 comments on commit 4c474ee

Please sign in to comment.