Fix search?
This commit is contained in:
parent
22b5016687
commit
370447d355
1 changed files with 3 additions and 2 deletions
|
@ -136,11 +136,12 @@ def cherche(**kwargs):
|
|||
|
||||
|
||||
# Application
|
||||
resultat = Stage.objects
|
||||
if USE_ELASTICSEARCH and use_dsl:
|
||||
filtres &= Q(id__in=[s.meta.id for s in dsl.scan()])
|
||||
resultat = dsl.to_queryset(True)
|
||||
|
||||
#print(filtres)
|
||||
resultat = Stage.objects.filter(filtres)
|
||||
resultat = resultat.filter(filtres).distinct()
|
||||
tri = 'pertinence'
|
||||
|
||||
if not use_dsl:
|
||||
|
|
Loading…
Reference in a new issue