Fix bug where the promotion isn't shown in stats

This commit is contained in:
Julien Constant 2023-09-07 13:48:38 +02:00
parent abe98ace07
commit 13067c8529
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ class Counter(models.Model):
)
.annotate(nickname=F("customer__user__nick_name"))
.annotate(promo=F("customer__user__promo"))
.values("customer__user", "name", "nickname")
.values("customer__user", "promo", "name", "nickname")
.annotate(
selling_sum=Sum(
F("unit_price") * F("quantity"), output_field=CurrencyField()