|
@ -405,6 +405,7 @@ odoo.define('web_m2x_options.web_m2x_options', function (require) { |
|
|
open_badge: function(ev){ |
|
|
open_badge: function(ev){ |
|
|
var self = this; |
|
|
var self = this; |
|
|
var open = (self.options && self.is_option_set(self.options.open)); |
|
|
var open = (self.options && self.is_option_set(self.options.open)); |
|
|
|
|
|
var no_color_picker = (self.options && self.is_option_set(self.options.no_color_picker)); |
|
|
if(open){ |
|
|
if(open){ |
|
|
self.mutex.exec(function(){ |
|
|
self.mutex.exec(function(){ |
|
|
var id = parseInt($(ev.currentTarget).data('id'), 10); |
|
|
var id = parseInt($(ev.currentTarget).data('id'), 10); |
|
@ -416,6 +417,10 @@ odoo.define('web_m2x_options.web_m2x_options', function (require) { |
|
|
target: "new" |
|
|
target: "new" |
|
|
}); |
|
|
}); |
|
|
}.bind(this)); |
|
|
}.bind(this)); |
|
|
|
|
|
}else if(no_color_picker){ |
|
|
|
|
|
self.mutex.exec(function(){ |
|
|
|
|
|
return |
|
|
|
|
|
}.bind(this)); |
|
|
}else{ |
|
|
}else{ |
|
|
self.open_color_picker(ev); |
|
|
self.open_color_picker(ev); |
|
|
} |
|
|
} |
|
|