You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class PointOfSales(models.Model):
location = models_gis.PointField(blank=True, null=True)
class Deal(models.Model):
promo_code = models.CharField(max_length=25, blank=True, null=True)
points_of_sales = models.ManyToManyField(PointOfSales, related_name='deals')
I wanted to filter deals in points of sales near me:
class DealViewSet(viewsets.ReadOnlyModelViewSet):
serializer_class = DealSerializer
queryset = Deal.objects.all()
filter_backends = (DistanceToPointFilter, )
distance_filter_field = 'points_of_sales__location'
distance_filter_convert_meters = True # by default we use srid=4326 (uses degrees), but input should be in meters
A deal in two points of sales near me will end up twice in the response.
In /rest_framework_gis/filters.py there is a filter_queryset method where I added .distinct() just like in the PR that fixed restframework encode/django-rest-framework@3522b69 and I got the expected result. I didn't break any other of my tests. Might it be a fix?
Thanks for publishing your solution @egamonal.
I'm not sure your solution can be applied as the general default case. Let's leave this issue open so if other people will encounter a similar problem we can continue the discussion.
A year ago a similar issue was filled for Django framework encode/django-rest-framework#1488
Model example:
I wanted to filter deals in points of sales near me:
A deal in two points of sales near me will end up twice in the response.
In /rest_framework_gis/filters.py there is a
filter_queryset
method where I added.distinct()
just like in the PR that fixed restframework encode/django-rest-framework@3522b69 and I got the expected result. I didn't break any other of my tests. Might it be a fix?The text was updated successfully, but these errors were encountered: