Баг / После оплаты бонусами показывает попап "вам начислено Х лиликов"

remotes/origin/feature/bonus-payment
gzbender 6 years ago
parent b9be5052ad
commit 397fd0bfd6
  1. 2
      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):

Loading…
Cancel
Save