chore: custom analytics charts (#5052)
This commit is contained in:
parent
3cfb0ac518
commit
509c258b07
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ from django.db.models import (
|
|||
Sum,
|
||||
Value,
|
||||
When,
|
||||
IntegerField,
|
||||
FloatField,
|
||||
)
|
||||
from django.db.models.functions import (
|
||||
Coalesce,
|
||||
|
|
@ -98,7 +98,7 @@ def build_graph_plot(queryset, x_axis, y_axis, segment=None):
|
|||
# Estimate
|
||||
else:
|
||||
queryset = queryset.annotate(
|
||||
estimate=Sum(Cast("estimate_point__value", IntegerField()))
|
||||
estimate=Sum(Cast("estimate_point__value", FloatField()))
|
||||
).order_by(x_axis)
|
||||
queryset = (
|
||||
queryset.annotate(segment=F(segment)) if segment else queryset
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue