From 3213ad4dddfee0333b66076b6955c7464c6421c1 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 5 Nov 2013 13:18:43 +0100 Subject: [PATCH] [FIX] web: instance.web.DataSetSearch.get_domain() returns the domain. lp bug: https://launchpad.net/bugs/1195631 fixed bzr revid: chs@openerp.com-20131105121843-rqplhk83fczxww0t --- addons/web/static/src/js/data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/js/data.js b/addons/web/static/src/js/data.js index e535be29..bb658a2 100644 --- a/addons/web/static/src/js/data.js +++ b/addons/web/static/src/js/data.js @@ -724,7 +724,7 @@ instance.web.DataSetSearch = instance.web.DataSet.extend({ }); }, get_domain: function (other_domain) { - this._model.domain(other_domain); + return this._model.domain(other_domain); }, alter_ids: function (ids) { this._super(ids); -- 1.7.10.4