From dda51decc897d56c8171056450b947e008da3b64 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 4 Nov 2013 12:05:12 +0100 Subject: [PATCH] [FIX] document: correct numbering of attachments with the same name bzr revid: chs@openerp.com-20131104110512-an7qpur1zckpgu7z --- addons/document/static/src/js/document.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/document/static/src/js/document.js b/addons/document/static/src/js/document.js index 23f1375e8c8..e4bce2da76e 100644 --- a/addons/document/static/src/js/document.js +++ b/addons/document/static/src/js/document.js @@ -9,7 +9,7 @@ openerp.document = function (instance) { on_attachments_loaded: function(attachments) { //to display number in name if more then one attachment which has same name. var self = this; - _.chain(attachments.reverse()) + _.chain(attachments) .groupBy(function(attachment) { return attachment.name}) .each(function(attachment){ if(attachment.length > 1)