Merge pull request #716 from Tecnativa/10.0-web_advanced_search_x2x-fix_false_text

[FIX][web_advanced_search_x2x] Fix "false" label
pull/720/head
Pedro M. Baeza 2017-09-05 12:37:34 +02:00 committed by GitHub
commit 9df3f77a76
2 changed files with 4 additions and 1 deletions

View File

@ -5,7 +5,7 @@
{ {
"name": "Search x2x fields", "name": "Search x2x fields",
"version": "10.0.2.0.0", "version": "10.0.2.0.1",
"author": "Therp BV, " "author": "Therp BV, "
"Tecnativa, " "Tecnativa, "
"Odoo Community Association (OCA)", "Odoo Community Association (OCA)",

View File

@ -172,6 +172,9 @@ odoo.define('web_advanced_search_x2x.search_filters', function (require) {
get_value: function () { get_value: function () {
try { try {
if (!this.x2x_widget_name()) {
throw "No x2x widget, fallback to default";
}
return this._x2x_field.get_value(); return this._x2x_field.get_value();
} catch (error) { } catch (error) {
return this._super.apply(this, arguments); return this._super.apply(this, arguments);