forked from Techsystech/web
Use super to allow better future hacking
parent
76822f22ee
commit
64551293c5
|
@ -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));
|
||||||
|
|
Loading…
Reference in New Issue