fix: 修复仪表盘会话排序数量都是 1 的问题

pull/13100/head
Bai 2024-04-22 19:40:37 +08:00 committed by Bryan
parent 82e7f020ea
commit 67277dd622
1 changed files with 2 additions and 2 deletions

View File

@ -187,14 +187,14 @@ class DatesLoginMetricMixin:
def get_dates_login_times_assets(self):
assets = self.sessions_queryset.values("asset") \
.annotate(total=Count("asset", distinct=True)) \
.annotate(total=Count("asset")) \
.annotate(last=Cast(Max("date_start"), output_field=CharField())) \
.order_by("-total")
return list(assets[:10])
def get_dates_login_times_users(self):
users = self.sessions_queryset.values("user_id") \
.annotate(total=Count("user_id", distinct=True)) \
.annotate(total=Count("user_id")) \
.annotate(user=Max('user')) \
.annotate(last=Cast(Max("date_start"), output_field=CharField())) \
.order_by("-total")