Fix highlight color not working on best customer table

This commit is contained in:
Julien Constant 2023-09-07 14:00:16 +02:00
parent 2138752ce9
commit 2e4c85ce30
1 changed files with 2 additions and 1 deletions

View File

@ -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()