Use super to allow better future hacking

pull/200/head
Cristian Salamea 2015-08-17 18:25:24 -05:00
parent 76822f22ee
commit 64551293c5
1 changed files with 1 additions and 2 deletions

View File

@ -6,8 +6,7 @@ openerp.web_action_conditionable = function (instance) {
var attrs = this.fields_view.arch.attrs; var attrs = this.fields_view.arch.attrs;
if (action in attrs) { if (action in attrs) {
try { try {
data = JSON.parse(attrs[action]); return this._super(action);
return data;
} catch(error) { } catch(error) {
var expr = attrs[action]; var expr = attrs[action];
var expression = py.parse(py.tokenize(expr)); var expression = py.parse(py.tokenize(expr));