Commentaire dans la fonction

This commit is contained in:
Ludovic Stephan 2019-06-17 21:40:32 +02:00
parent 46e7305953
commit d7d0daea0d

View file

@ -176,10 +176,10 @@ class ParticipantPaidQueryset(models.QuerySet):
indiquant si un participant a payé toutes ses attributions.
"""
# OuterRef permet de se référer à un champ d'un modèle non encore fixé
# Voir:
# https://docs.djangoproject.com/en/2.2/ref/models/expressions/#django.db.models.OuterRef
def annotate_paid(self):
# OuterRef permet de se référer à un champ d'un modèle non encore fixé
# Voir:
# https://docs.djangoproject.com/en/2.2/ref/models/expressions/#django.db.models.OuterRef
unpaid = Attribution.objects.filter(
participant=models.OuterRef("pk"), paid=False
)