diff --git a/counter/models.py b/counter/models.py index 30ab993e..58bbc68f 100644 --- a/counter/models.py +++ b/counter/models.py @@ -560,7 +560,8 @@ class Counter(models.Model): ) .annotate(nickname=F("customer__user__nick_name")) .annotate(promo=F("customer__user__promo")) - .values("customer__user", "promo", "name", "nickname") + .annotate(user=F("customer__user")) + .values("customer__user", "user", "promo", "name", "nickname") .annotate( selling_sum=Sum( F("unit_price") * F("quantity"), output_field=CurrencyField()