[IMP] synchronize searches

pull/1030/head
Holger Brunn 2015-12-14 19:52:21 +01:00
parent 71210c651b
commit fac5e8873a
No known key found for this signature in database
GPG Key ID: 01C9760FECA3AE18
1 changed files with 22 additions and 15 deletions

View File

@ -11,6 +11,10 @@ openerp.web_search_autocomplete_prefetch = function(instance)
{
return data;
}
if(!self.autocomplete_mutex)
{
self.autocomplete_mutex = new instance.Mutex()
}
var facet = {
get: function(name)
{
@ -25,23 +29,26 @@ openerp.web_search_autocomplete_prefetch = function(instance)
self.get_domain({values: [facet]}),
self.view.dataset.domain);
domain.set_eval_context(self.view.dataset.get_context());
return self.view.dataset._model.call(
'search_count', [domain.eval()])
.then(function(count)
{
if(count)
return self.autocomplete_mutex.exec(function()
{
return self.view.dataset._model.call(
'search_count', [domain.eval()])
.then(function(count)
{
_.each(data, function(obj)
if(count)
{
obj.label += _.str.sprintf(' (%s)', count);
});
return data;
}
else
{
return null;
}
});
_.each(data, function(obj)
{
obj.label += _.str.sprintf(' (%s)', count);
});
return data;
}
else
{
return null;
}
});
});
}
instance.web.search.CharField.include({