fix - list of assigned_distribution & assigner_distributions of me
This commit is contained in:
@@ -398,10 +398,13 @@ class QuotaViewSet(BaseViewSet, SoftDeleteMixin, viewsets.ModelViewSet, DynamicS
|
||||
def get_distributions_by_quota(self, request, pk=None):
|
||||
""" list of distributions by quota """
|
||||
|
||||
my_org = get_organization_by_user(request.user)
|
||||
try:
|
||||
quota = self.get_object()
|
||||
queryset = self.filter_query(
|
||||
quota.distributions_assigned.all().order_by('-modify_date')
|
||||
quota.distributions_assigned.filter(
|
||||
assigner_organization=my_org
|
||||
).order_by('-modify_date')
|
||||
) # return by search param or all objects
|
||||
|
||||
# paginate queryset
|
||||
|
||||
Reference in New Issue
Block a user