mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
simplify character count query
Co-Authored-By: Trenton H <797416+stumpylog@users.noreply.github.com>
This commit is contained in:
parent
2bc7f0b8e0
commit
2bdf0aae14
@ -20,6 +20,7 @@ from django.db.models import Case
|
|||||||
from django.db.models import Count
|
from django.db.models import Count
|
||||||
from django.db.models import IntegerField
|
from django.db.models import IntegerField
|
||||||
from django.db.models import Max
|
from django.db.models import Max
|
||||||
|
from django.db.models import Sum
|
||||||
from django.db.models import When
|
from django.db.models import When
|
||||||
from django.db.models.functions import Length
|
from django.db.models.functions import Length
|
||||||
from django.db.models.functions import Lower
|
from django.db.models.functions import Lower
|
||||||
@ -814,14 +815,11 @@ class StatisticsView(APIView):
|
|||||||
)
|
)
|
||||||
|
|
||||||
character_count = (
|
character_count = (
|
||||||
sum(
|
Document.objects.annotate(
|
||||||
Document.objects.annotate(characters=Length("content")).values_list(
|
characters=Length("content"),
|
||||||
"characters",
|
|
||||||
flat=True,
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
if documents_total > 0
|
.aggregate(Sum("characters"))
|
||||||
else 0
|
.get("characters__sum")
|
||||||
)
|
)
|
||||||
|
|
||||||
return Response(
|
return Response(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user