[IMP] reload navbar needaction when a mail was read

pull/1028/head
Holger Brunn 2015-10-20 13:51:51 +02:00
parent ae00081ee2
commit 1994a8b98e
No known key found for this signature in database
GPG Key ID: 01C9760FECA3AE18
2 changed files with 12 additions and 0 deletions

View File

@ -26,6 +26,7 @@
"summary": "Show the sum of submenus' needaction counters in main menu",
"depends": [
'web',
'mail',
],
"data": [
"data/ir_config_parameter.xml",

View File

@ -75,4 +75,15 @@ openerp.web_menu_navbar_needaction = function(instance)
});
},
})
instance.mail.Thread.include({
message_fetch_set_read: function (message_list)
{
this._super.apply(this, arguments);
return this.render_mutex.exec(function()
{
instance.client.menu.refresh_navbar_needaction();
});
},
})
}