[FIX] web: fix handling of manyone with selection widget
authorDenis Ledoux <dle@openerp.com>
Tue, 18 Feb 2014 16:21:25 +0000 (17:21 +0100)
committerDenis Ledoux <dle@openerp.com>
Tue, 18 Feb 2014 16:21:25 +0000 (17:21 +0100)
Following the remove of widget selection handling in ir_ui_view of revision 4854.4.298 revid:al@openerp.com-20140121112759-zavwqdyv8kdq4oys

bzr revid: dle@openerp.com-20140218162125-bwse328ybq9d6c2v

addons/web/static/src/js/formats.js

index 2f6bbce..3c32dbe 100644 (file)
@@ -205,7 +205,7 @@ instance.web.format_value = function (value, descriptor, value_if_empty) {
         case 'selection': case 'statusbar':
             // Each choice is [value, label]
             if(_.isArray(value)) {
-                 value = value[0];
+                 return value[1];
             }
             var result = _(descriptor.selection).detect(function (choice) {
                 return choice[0] === value;