diff --git a/mail_archives/README.rst b/mail_archives/README.rst index 100ef14..4d06ddf 100644 --- a/mail_archives/README.rst +++ b/mail_archives/README.rst @@ -1,11 +1,11 @@ Mail Archives ============= -Display archive channel which contain read messages +Adds Archive menu, which shows all messages Usage ----- -Click by archive menu item and receive read messages (having attribute read = true) +Click by archive menu item and receive all messages Further information ------------------- diff --git a/res_partner_mails_count/__openerp__.py b/res_partner_mails_count/__openerp__.py index 9e86c59..f60b70c 100644 --- a/res_partner_mails_count/__openerp__.py +++ b/res_partner_mails_count/__openerp__.py @@ -14,7 +14,7 @@ "depends": [ 'base', - 'mail' , + 'mail', ], "external_dependencies": {"python": [], "bin": []}, "data": [ diff --git a/res_partner_mails_count/static/src/js/main.js b/res_partner_mails_count/static/src/js/main.js index 16c9d56..96415c6 100644 --- a/res_partner_mails_count/static/src/js/main.js +++ b/res_partner_mails_count/static/src/js/main.js @@ -1,10 +1,10 @@ -openerp.res_partner_mails_count = function(instance){ - instance.mail.Wall.include({ - init: function(){ - this._super.apply(this, arguments); - if(this.context.ignore_search_model){ - delete this.defaults.model; - } - } - }); -}; +// openerp.res_partner_mails_count = function(instance){ +// instance.mail.Wall.include({ +// init: function(){ +// this._super.apply(this, arguments); +// if(this.context.ignore_search_model){ +// delete this.defaults.model; +// } +// } +// }); +// };