import - quota dashboard & some changes in product quota stat
This commit is contained in:
@@ -212,6 +212,8 @@ class OrganizationTypeViewSet(BaseViewSet, SoftDeleteMixin, ModelViewSet):
|
|||||||
""" Crud operations for Organization Type model """ #
|
""" Crud operations for Organization Type model """ #
|
||||||
queryset = OrganizationType.objects.all()
|
queryset = OrganizationType.objects.all()
|
||||||
serializer_class = OrganizationTypeSerializer
|
serializer_class = OrganizationTypeSerializer
|
||||||
|
filter_backends = [filters.SearchFilter]
|
||||||
|
search_fields = ['name']
|
||||||
|
|
||||||
def list(self, request, *args, **kwargs):
|
def list(self, request, *args, **kwargs):
|
||||||
""" all organization type """
|
""" all organization type """
|
||||||
@@ -226,6 +228,7 @@ class OrganizationTypeViewSet(BaseViewSet, SoftDeleteMixin, ModelViewSet):
|
|||||||
elif org_type_field == 'CO':
|
elif org_type_field == 'CO':
|
||||||
queryset = self.get_queryset().filter(org_type_field=org_type_field).order_by('-modify_date')
|
queryset = self.get_queryset().filter(org_type_field=org_type_field).order_by('-modify_date')
|
||||||
|
|
||||||
|
queryset = self.filter_queryset(queryset) # noqa
|
||||||
page = self.paginate_queryset(queryset.order_by('-create_date')) # paginate queryset # noqa
|
page = self.paginate_queryset(queryset.order_by('-create_date')) # paginate queryset # noqa
|
||||||
if page is not None: # noqa
|
if page is not None: # noqa
|
||||||
serializer = self.serializer_class(page, many=True)
|
serializer = self.serializer_class(page, many=True)
|
||||||
|
|||||||
@@ -113,7 +113,8 @@ class RoleViewSet(BaseViewSet, SoftDeleteMixin, viewsets.ModelViewSet):
|
|||||||
def list(self, request, *args, **kwargs):
|
def list(self, request, *args, **kwargs):
|
||||||
""" all roles """
|
""" all roles """
|
||||||
|
|
||||||
role = self.paginate_queryset(self.get_queryset().order_by('-modify_date'))
|
queryset = self.filter_queryset(self.get_queryset().order_by('-modify_date'))
|
||||||
|
role = self.paginate_queryset(queryset)
|
||||||
if role is not None: # noqa
|
if role is not None: # noqa
|
||||||
serializer = self.get_serializer(role, many=True)
|
serializer = self.get_serializer(role, many=True)
|
||||||
return self.get_paginated_response(serializer.data)
|
return self.get_paginated_response(serializer.data)
|
||||||
|
|||||||
@@ -154,6 +154,12 @@ class ProductStats(BaseModel):
|
|||||||
related_name='product_stats',
|
related_name='product_stats',
|
||||||
null=True
|
null=True
|
||||||
)
|
)
|
||||||
|
product_org_stat_type = models.CharField(
|
||||||
|
max_length=25,
|
||||||
|
null=True,
|
||||||
|
default='registerer',
|
||||||
|
help_text='registerer or distributioned' # noqa
|
||||||
|
)
|
||||||
quotas_number = models.PositiveBigIntegerField(default=0)
|
quotas_number = models.PositiveBigIntegerField(default=0)
|
||||||
sale_unit = models.CharField(max_length=25, null=True)
|
sale_unit = models.CharField(max_length=25, null=True)
|
||||||
active_quotas_weight = models.PositiveBigIntegerField(default=0)
|
active_quotas_weight = models.PositiveBigIntegerField(default=0)
|
||||||
|
|||||||
50
apps/product/services/quota_dashboard_service.py
Normal file
50
apps/product/services/quota_dashboard_service.py
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
from django.db.models import Sum, Count
|
||||||
|
from django.db.models.functions import Coalesce
|
||||||
|
|
||||||
|
from apps.authentication.models import Organization
|
||||||
|
from apps.authentication.services.service import get_all_org_child
|
||||||
|
from apps.core.services.filter.search import DynamicSearchService
|
||||||
|
from apps.product.models import OrganizationQuotaStats
|
||||||
|
|
||||||
|
|
||||||
|
class QuotaDashboardService:
|
||||||
|
"""
|
||||||
|
dashboard of quota information
|
||||||
|
"""
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def get_dashboard(self, org: Organization, start_date: str = None, end_date: str = None,
|
||||||
|
search_fields: list[str] = None):
|
||||||
|
orgs_child = get_all_org_child(org=org)
|
||||||
|
orgs_child.append(org)
|
||||||
|
|
||||||
|
if org.type.key == 'ADM':
|
||||||
|
org_quota_stats = OrganizationQuotaStats.objects.all()
|
||||||
|
else:
|
||||||
|
org_quota_stats = OrganizationQuotaStats.objects.filter(
|
||||||
|
organization__in=orgs_child
|
||||||
|
)
|
||||||
|
|
||||||
|
# filter queryset (transactions & items) by date
|
||||||
|
if start_date and end_date:
|
||||||
|
org_quota_stats = DynamicSearchService(
|
||||||
|
queryset=org_quota_stats,
|
||||||
|
start=start_date,
|
||||||
|
end=end_date,
|
||||||
|
date_field="create_date",
|
||||||
|
search_fields=search_fields
|
||||||
|
).apply()
|
||||||
|
|
||||||
|
org_quota_stats = org_quota_stats.aggregate(
|
||||||
|
total_quotas=Count("quota", distinct=True),
|
||||||
|
total_distributed=Coalesce(Sum("total_distributed", ), 0),
|
||||||
|
remaining_amount=Coalesce(Sum("remaining_amount", ), 0),
|
||||||
|
inventory_received=Coalesce(Sum("inventory_received", ), 0),
|
||||||
|
sold_amount=Coalesce(Sum("sold_amount", ), 0),
|
||||||
|
total_amount=Coalesce(Sum("total_amount", ), 0),
|
||||||
|
inventory_entry_balance=Coalesce(Sum("inventory_entry_balance", ), 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
return {
|
||||||
|
"quotas_summary": org_quota_stats,
|
||||||
|
}
|
||||||
@@ -14,7 +14,6 @@ from common.helpers import get_organization_by_user
|
|||||||
from .models import (
|
from .models import (
|
||||||
QuotaDistribution,
|
QuotaDistribution,
|
||||||
Quota,
|
Quota,
|
||||||
Product,
|
|
||||||
ProductStats,
|
ProductStats,
|
||||||
QuotaStats, OrganizationQuotaStats
|
QuotaStats, OrganizationQuotaStats
|
||||||
)
|
)
|
||||||
@@ -75,144 +74,150 @@ def update_quota_remaining(sender, instance, **kwargs):
|
|||||||
remaining_distribution_weight(instance)
|
remaining_distribution_weight(instance)
|
||||||
|
|
||||||
|
|
||||||
def update_product_stats(instance: Product, distribution: QuotaDistribution = None):
|
def update_product_stats(instance: OrganizationQuotaStats):
|
||||||
""" update all stats of product """
|
""" update all stats of product """
|
||||||
|
|
||||||
user = get_current_user() # get user object
|
user = get_current_user() # get user object
|
||||||
if not isinstance(user, AnonymousUser):
|
if not isinstance(user, AnonymousUser):
|
||||||
organization = get_organization_by_user(user)
|
organization = get_organization_by_user(user)
|
||||||
QuotaStatsValidator.validate_assigner_has_enough(
|
# QuotaStatsValidator.validate_assigner_has_enough(
|
||||||
organization,
|
# organization,
|
||||||
distribution.quota,
|
# distribution.quota,
|
||||||
distribution.weight,
|
# distribution.weight,
|
||||||
allow_zero=True
|
# allow_zero=True
|
||||||
|
# )
|
||||||
|
|
||||||
|
stat, created = ProductStats.objects.get_or_create(
|
||||||
|
organization=organization,
|
||||||
|
product=instance,
|
||||||
|
sale_unit=instance.quota.sale_unit.unit
|
||||||
)
|
)
|
||||||
if ProductStats.objects.filter(
|
|
||||||
organization=organization,
|
|
||||||
product=instance,
|
|
||||||
sale_unit=distribution.quota.sale_unit.unit
|
|
||||||
):
|
|
||||||
stat = instance.stats.get(
|
|
||||||
organization=organization,
|
|
||||||
product=instance,
|
|
||||||
sale_unit=distribution.quota.sale_unit.unit
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
stat = ProductStats.objects.create(
|
|
||||||
product=instance,
|
|
||||||
organization=organization,
|
|
||||||
sale_unit=distribution.quota.sale_unit.unit
|
|
||||||
)
|
|
||||||
|
|
||||||
# number of quotas
|
# number of quotas
|
||||||
|
|
||||||
quota = Quota.objects.filter(
|
org_quota_stat = OrganizationQuotaStats.objects.filter(
|
||||||
Q(
|
organization=organization,
|
||||||
distributions_assigned__in=QuotaDistribution.objects.filter(
|
quota__product=instance.quota.product,
|
||||||
Q(assigned_organization=organization) |
|
|
||||||
Q(assigner_organization=organization) &
|
|
||||||
Q(parent_distribution__isnull=True)
|
|
||||||
|
|
||||||
)
|
|
||||||
) |
|
|
||||||
Q(registerer_organization=organization),
|
|
||||||
product=instance
|
|
||||||
).distinct()
|
|
||||||
|
|
||||||
quotas_count = quota.count() # noqa
|
|
||||||
|
|
||||||
total_quotas_weight = quota.aggregate( # noqa
|
|
||||||
total=models.Sum('quota_weight')
|
|
||||||
)['total'] or 0
|
|
||||||
|
|
||||||
# total weight of product that assigned in quota
|
|
||||||
active_quotas_weight = quota.filter(is_closed=False).aggregate(
|
|
||||||
total=models.Sum('quota_weight')
|
|
||||||
)['total'] or 0
|
|
||||||
|
|
||||||
closed_quotas_weight = quota.filter(is_closed=True).aggregate( # noqa
|
|
||||||
total=models.Sum('quota_weight')
|
|
||||||
)['total'] or 0
|
|
||||||
|
|
||||||
# total remaining weight of product quotas
|
|
||||||
total_remaining_quotas_weight = quota.filter(is_closed=False).aggregate( # noqa
|
|
||||||
total=models.Sum('remaining_weight')
|
|
||||||
)['total'] or 0
|
|
||||||
|
|
||||||
received_distribution_weight = QuotaDistribution.objects.filter(
|
|
||||||
quota__product_id=instance.id,
|
|
||||||
quota__is_closed=False,
|
|
||||||
quota__sale_unit=distribution.quota.sale_unit,
|
|
||||||
assigned_organization=organization,
|
|
||||||
parent_distribution__isnull=True
|
|
||||||
)
|
)
|
||||||
|
|
||||||
received_distribution_number = received_distribution_weight.count()
|
quotas_count = org_quota_stat.count() # noqa
|
||||||
|
|
||||||
received_distribution_weight = received_distribution_weight.aggregate(
|
product_stat_data = org_quota_stat.aggregate(
|
||||||
total_weight=models.Sum('weight')
|
total_quotas_weight=models.Sum('total_amount'),
|
||||||
)['total_weight'] or 0
|
active_quotas_weight=models.Sum('active_quotas_weight', filter=Q(quota__is_closed=False)),
|
||||||
|
closed_quotas_weight=models.Sum('closed_quotas_weight', filter=Q(quota__is_closed=True)),
|
||||||
# product total distributed weight from quota
|
total_remaining_quotas_weight=models.Sum('remaining_amount'),
|
||||||
given_distribution_weight = QuotaDistribution.objects.filter(
|
total_distributed=models.Sum('quota_distributed'),
|
||||||
quota__product_id=instance.id,
|
total_inventory_in=models.Sum('total_inventory_in'),
|
||||||
quota__is_closed=False,
|
total_sold=models.Sum('total_sold'),
|
||||||
quota__sale_unit=distribution.quota.sale_unit,
|
|
||||||
assigner_organization=organization,
|
|
||||||
parent_distribution__isnull=True
|
|
||||||
)
|
)
|
||||||
|
# quota = Quota.objects.filter(
|
||||||
|
# Q(
|
||||||
|
# distributions_assigned__in=QuotaDistribution.objects.filter(
|
||||||
|
# Q(assigned_organization=organization) |
|
||||||
|
# Q(assigner_organization=organization) &
|
||||||
|
# Q(parent_distribution__isnull=True)
|
||||||
|
#
|
||||||
|
# )
|
||||||
|
# ) |
|
||||||
|
# Q(registerer_organization=organization),
|
||||||
|
# product=instance
|
||||||
|
# ).distinct()
|
||||||
|
#
|
||||||
|
# quotas_count = quota.count() # noqa
|
||||||
|
#
|
||||||
|
# total_quotas_weight = quota.aggregate( # noqa
|
||||||
|
# total=models.Sum('quota_weight')
|
||||||
|
# )['total'] or 0
|
||||||
|
#
|
||||||
|
# # total weight of product that assigned in quota
|
||||||
|
# active_quotas_weight = quota.filter(is_closed=False).aggregate(
|
||||||
|
# total=models.Sum('quota_weight')
|
||||||
|
# )['total'] or 0
|
||||||
|
#
|
||||||
|
# closed_quotas_weight = quota.filter(is_closed=True).aggregate( # noqa
|
||||||
|
# total=models.Sum('quota_weight')
|
||||||
|
# )['total'] or 0
|
||||||
|
#
|
||||||
|
# # total remaining weight of product quotas
|
||||||
|
# total_remaining_quotas_weight = quota.filter(is_closed=False).aggregate( # noqa
|
||||||
|
# total=models.Sum('remaining_weight')
|
||||||
|
# )['total'] or 0
|
||||||
|
#
|
||||||
|
# received_distribution_weight = QuotaDistribution.objects.filter(
|
||||||
|
# quota__product_id=instance.id,
|
||||||
|
# quota__is_closed=False,
|
||||||
|
# quota__sale_unit=distribution.quota.sale_unit,
|
||||||
|
# assigned_organization=organization,
|
||||||
|
# parent_distribution__isnull=True
|
||||||
|
# )
|
||||||
|
#
|
||||||
|
# received_distribution_number = received_distribution_weight.count()
|
||||||
|
#
|
||||||
|
# received_distribution_weight = received_distribution_weight.aggregate(
|
||||||
|
# total_weight=models.Sum('weight')
|
||||||
|
# )['total_weight'] or 0
|
||||||
|
#
|
||||||
|
# # product total distributed weight from quota
|
||||||
|
# given_distribution_weight = QuotaDistribution.objects.filter(
|
||||||
|
# quota__product_id=instance.id,
|
||||||
|
# quota__is_closed=False,
|
||||||
|
# quota__sale_unit=distribution.quota.sale_unit,
|
||||||
|
# assigner_organization=organization,
|
||||||
|
# parent_distribution__isnull=True
|
||||||
|
# )
|
||||||
|
#
|
||||||
|
# given_distribution_number = given_distribution_weight.count()
|
||||||
|
# given_distribution_weight = given_distribution_weight.aggregate(
|
||||||
|
# total_weight=models.Sum('weight')
|
||||||
|
# )['total_weight'] or 0
|
||||||
|
#
|
||||||
|
# if received_distribution_weight > 0:
|
||||||
|
# distribution_weight_balance = received_distribution_weight - given_distribution_weight
|
||||||
|
# else:
|
||||||
|
# distribution_weight_balance = given_distribution_weight
|
||||||
|
#
|
||||||
|
# # total sold of product from quota
|
||||||
|
# total_sold = QuotaDistribution.objects.filter(
|
||||||
|
# quota__product_id=instance.id,
|
||||||
|
# quota__is_closed=False,
|
||||||
|
# quota__sale_unit=distribution.quota.sale_unit,
|
||||||
|
# assigned_organization=organization
|
||||||
|
# ).aggregate(total_sold=models.Sum('been_sold'))['total_sold'] or 0
|
||||||
|
#
|
||||||
|
# # total entry from product to inventory
|
||||||
|
# total_warehouse_entry = QuotaDistribution.objects.filter(
|
||||||
|
# quota__product_id=instance.id,
|
||||||
|
# quota__is_closed=False,
|
||||||
|
# quota__sale_unit=distribution.quota.sale_unit,
|
||||||
|
# assigned_organization=organization
|
||||||
|
# ).aggregate(total_entry=models.Sum('warehouse_entry'))['total_entry'] or 0
|
||||||
|
|
||||||
given_distribution_number = given_distribution_weight.count()
|
# stat.quotas_number = quotas_count
|
||||||
given_distribution_weight = given_distribution_weight.aggregate(
|
# stat.active_quotas_weight = active_quotas_weight
|
||||||
total_weight=models.Sum('weight')
|
# stat.closed_quotas_weight = closed_quotas_weight
|
||||||
)['total_weight'] or 0
|
# stat.total_quota_weight = total_quotas_weight
|
||||||
|
# stat.total_quota_remaining = total_remaining_quotas_weight
|
||||||
if received_distribution_weight > 0:
|
# stat.total_remaining_distribution_weight = distribution_weight_balance
|
||||||
distribution_weight_balance = received_distribution_weight - given_distribution_weight
|
# stat.received_distribution_weight = received_distribution_weight
|
||||||
else:
|
# stat.given_distribution_weight = given_distribution_weight
|
||||||
distribution_weight_balance = given_distribution_weight
|
# stat.received_distribution_number = received_distribution_number
|
||||||
|
# stat.given_distribution_number = given_distribution_number
|
||||||
# total sold of product from quota
|
# stat.total_warehouse_entry = total_warehouse_entry
|
||||||
total_sold = QuotaDistribution.objects.filter(
|
# stat.total_sold = total_sold
|
||||||
quota__product_id=instance.id,
|
# stat.save(update_fields=[
|
||||||
quota__is_closed=False,
|
# "quotas_number",
|
||||||
quota__sale_unit=distribution.quota.sale_unit,
|
# "active_quotas_weight",
|
||||||
assigned_organization=organization
|
# "closed_quotas_weight",
|
||||||
).aggregate(total_sold=models.Sum('been_sold'))['total_sold'] or 0
|
# "total_quota_weight",
|
||||||
|
# "total_quota_remaining",
|
||||||
# total entry from product to inventory
|
# "total_remaining_distribution_weight",
|
||||||
total_warehouse_entry = QuotaDistribution.objects.filter(
|
# "received_distribution_weight",
|
||||||
quota__product_id=instance.id,
|
# "given_distribution_weight",
|
||||||
quota__is_closed=False,
|
# "received_distribution_number",
|
||||||
quota__sale_unit=distribution.quota.sale_unit,
|
# "total_warehouse_entry",
|
||||||
assigned_organization=organization
|
# "total_sold",
|
||||||
).aggregate(total_entry=models.Sum('warehouse_entry'))['total_entry'] or 0
|
# ])
|
||||||
|
|
||||||
stat.quotas_number = quotas_count
|
|
||||||
stat.active_quotas_weight = active_quotas_weight
|
|
||||||
stat.closed_quotas_weight = closed_quotas_weight
|
|
||||||
stat.total_quota_weight = total_quotas_weight
|
|
||||||
stat.total_quota_remaining = total_remaining_quotas_weight
|
|
||||||
stat.total_remaining_distribution_weight = distribution_weight_balance
|
|
||||||
stat.received_distribution_weight = received_distribution_weight
|
|
||||||
stat.given_distribution_weight = given_distribution_weight
|
|
||||||
stat.received_distribution_number = received_distribution_number
|
|
||||||
stat.given_distribution_number = given_distribution_number
|
|
||||||
stat.total_warehouse_entry = total_warehouse_entry
|
|
||||||
stat.total_sold = total_sold
|
|
||||||
stat.save(update_fields=[
|
|
||||||
"quotas_number",
|
|
||||||
"active_quotas_weight",
|
|
||||||
"closed_quotas_weight",
|
|
||||||
"total_quota_weight",
|
|
||||||
"total_quota_remaining",
|
|
||||||
"total_remaining_distribution_weight",
|
|
||||||
"received_distribution_weight",
|
|
||||||
"given_distribution_weight",
|
|
||||||
"received_distribution_number",
|
|
||||||
"total_warehouse_entry",
|
|
||||||
"total_sold",
|
|
||||||
])
|
|
||||||
|
|
||||||
|
|
||||||
def update_quota_stats(instance: Quota):
|
def update_quota_stats(instance: Quota):
|
||||||
@@ -254,7 +259,7 @@ def update_quota_stats(instance: Quota):
|
|||||||
@receiver([post_save, post_delete], sender=InventoryQuotaSaleTransaction)
|
@receiver([post_save, post_delete], sender=InventoryQuotaSaleTransaction)
|
||||||
def update_stats_on_change(sender, instance, **kwargs):
|
def update_stats_on_change(sender, instance, **kwargs):
|
||||||
if sender == QuotaDistribution:
|
if sender == QuotaDistribution:
|
||||||
update_product_stats(instance.quota.product, instance)
|
# update_product_stats(instance.quota.product, instance)
|
||||||
update_quota_stats(instance.quota)
|
update_quota_stats(instance.quota)
|
||||||
|
|
||||||
# if _from_signal=True prevent from maximum recursion loop
|
# if _from_signal=True prevent from maximum recursion loop
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ from apps.core.mixins.soft_delete_mixin import SoftDeleteMixin
|
|||||||
from apps.core.pagination import CustomPageNumberPagination
|
from apps.core.pagination import CustomPageNumberPagination
|
||||||
from apps.product import models as product_models
|
from apps.product import models as product_models
|
||||||
from apps.product.exceptions import QuotaExpiredTimeException
|
from apps.product.exceptions import QuotaExpiredTimeException
|
||||||
|
from apps.product.services.quota_dashboard_service import QuotaDashboardService
|
||||||
from apps.product.web.api.v1.serializers import quota_distribution_serializers
|
from apps.product.web.api.v1.serializers import quota_distribution_serializers
|
||||||
from apps.product.web.api.v1.serializers import quota_serializers
|
from apps.product.web.api.v1.serializers import quota_serializers
|
||||||
from apps.product.web.api.v1.viewsets import product_api
|
from apps.product.web.api.v1.viewsets import product_api
|
||||||
@@ -35,7 +36,8 @@ def delete(queryset, pk):
|
|||||||
obj.delete()
|
obj.delete()
|
||||||
|
|
||||||
|
|
||||||
class QuotaViewSet(BaseViewSet, SoftDeleteMixin, viewsets.ModelViewSet, DynamicSearchMixin): # noqa
|
class QuotaViewSet(BaseViewSet, SoftDeleteMixin, QuotaDashboardService, viewsets.ModelViewSet,
|
||||||
|
DynamicSearchMixin, ): # noqa
|
||||||
""" apis for product quota """
|
""" apis for product quota """
|
||||||
|
|
||||||
queryset = product_models.Quota.objects.all()
|
queryset = product_models.Quota.objects.all()
|
||||||
@@ -49,6 +51,8 @@ class QuotaViewSet(BaseViewSet, SoftDeleteMixin, viewsets.ModelViewSet, DynamicS
|
|||||||
"sale_type",
|
"sale_type",
|
||||||
"sale_unit__unit",
|
"sale_unit__unit",
|
||||||
"group",
|
"group",
|
||||||
|
"created_by",
|
||||||
|
"modified_by"
|
||||||
]
|
]
|
||||||
|
|
||||||
@transaction.atomic
|
@transaction.atomic
|
||||||
@@ -351,6 +355,33 @@ class QuotaViewSet(BaseViewSet, SoftDeleteMixin, viewsets.ModelViewSet, DynamicS
|
|||||||
quota.save()
|
quota.save()
|
||||||
return Response(status=status.HTTP_200_OK)
|
return Response(status=status.HTTP_200_OK)
|
||||||
|
|
||||||
|
@action(
|
||||||
|
methods=['get'],
|
||||||
|
detail=False,
|
||||||
|
url_path='quotas_dashboard',
|
||||||
|
url_name='quotas_dashboard',
|
||||||
|
name='quotas_dashboard'
|
||||||
|
)
|
||||||
|
def quotas_dashboard(self, request):
|
||||||
|
"""
|
||||||
|
dashboard of all quotas & their information
|
||||||
|
"""
|
||||||
|
|
||||||
|
query_param = self.request.query_params # noqa
|
||||||
|
|
||||||
|
start_date = query_param.get('start') if 'start' in query_param.keys() else None
|
||||||
|
end_date = query_param.get('end') if 'end' in query_param.keys() else None
|
||||||
|
|
||||||
|
quota_dashboard = self.get_dashboard(
|
||||||
|
self,
|
||||||
|
org=get_organization_by_user(request.user),
|
||||||
|
start_date=start_date,
|
||||||
|
end_date=end_date,
|
||||||
|
search_fields=self.search_fields,
|
||||||
|
)
|
||||||
|
|
||||||
|
return Response(quota_dashboard)
|
||||||
|
|
||||||
@action(
|
@action(
|
||||||
methods=['get'],
|
methods=['get'],
|
||||||
detail=False,
|
detail=False,
|
||||||
|
|||||||
Reference in New Issue
Block a user