From 7b600e82c4ff9097cb0433dc943a0f896e7e1052 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Tue, 18 Oct 2011 12:34:43 +0200 Subject: [PATCH] [IMP] don't check for the column type being m2o if we already went through the reference case bzr revid: xmo@openerp.com-20111018103443-p1l5cya0nexf6cj1 --- addons/web/static/src/js/view_list.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/addons/web/static/src/js/view_list.js b/addons/web/static/src/js/view_list.js index 2f9bfd428ca..1c7f1a1562b 100644 --- a/addons/web/static/src/js/view_list.js +++ b/addons/web/static/src/js/view_list.js @@ -808,8 +808,7 @@ openerp.web.ListView.List = openerp.web.Class.extend( /** @lends openerp.web.Lis record.set(column.id, names[0][1]); }); } - } - if (column.type === 'many2one') { + } else if (column.type === 'many2one') { value = record.get(column.id); // m2o values are usually name_get formatted, [Number, String] // pairs, but in some cases only the id is provided. In these