Skip to content

Commit

Permalink
Allowing no ecoscored on vertical search
Browse files Browse the repository at this point in the history
  • Loading branch information
goulven authored and goulven committed Dec 6, 2024
1 parent 431964c commit 7b05c30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpSer
vRequest.setSortOrder("desc");
vRequest.getNumericFilters().add(new NumericRangeFilter("offersCount", 1.0, 10000.0, 1.0, false));
vRequest.getNumericFilters().add(new NumericRangeFilter("price.minPrice.price", 0.0001, 500000.0, 100.0, false));
vRequest.getNumericFilters().add(new NumericRangeFilter("scores.ECOSCORE.value", 0.0001, 500000.0, 0.1, false));
vRequest.getNumericFilters().add(new NumericRangeFilter("scores.ECOSCORE.value", 0.0001, 500000.0, 0.1, true));



Expand Down

0 comments on commit 7b05c30

Please sign in to comment.