diff --git a/apps/user/models.py b/apps/user/models.py index efeda23d..7a774998 100644 --- a/apps/user/models.py +++ b/apps/user/models.py @@ -156,7 +156,7 @@ class User(AbstractUser): last_bonus = self.bonuses.filter( Q(payment__isnull=False, payment__status__in=Payment.PW_PAID_STATUSES) | Q(is_service=True), ).order_by('-created_at').first() - return bool(last_bonus) and not last_bonus.notified_at + return bool(last_bonus) and last_bonus.amount > 0 and not last_bonus.notified_at @property def paid_one_more(self):