forked from Techsystech/web
Merge pull request #493 from initOS/7.0-fix_m2x_options_for_view
[FIX] 7.0 Fix JavaScript error: undefined variable 'widget.view'7.0
commit
11784e40ae
|
@ -37,11 +37,11 @@ openerp.web_m2x_options = function (instance) {
|
|||
if (p < 0) return;
|
||||
var key = option.substring(p + 1); // w/o 'web_m2x_options' prefix
|
||||
// ... hence set from context ...
|
||||
if (!_.isUndefined(widget.view.dataset.context[key])) {
|
||||
if (!_.isUndefined(widget.view) && !_.isUndefined(widget.view.dataset.context[key])) {
|
||||
widget.view.ir_options[option] = widget.view.dataset.context[key];
|
||||
}
|
||||
// ... and (overwrite) from widget here ...
|
||||
if (!_.isUndefined(widget.options[key])) {
|
||||
if (!_.isUndefined(widget.view) && !_.isUndefined(widget.options[key])) {
|
||||
widget.view.ir_options[option] = widget.options[key];
|
||||
}
|
||||
// ... but don't overwrite from global parameters above
|
||||
|
|
Loading…
Reference in New Issue