filter sold attributions

This commit is contained in:
Ludovic Stephan 2016-10-28 14:15:37 -02:00
parent e408437ab1
commit 8d1f599577

View file

@ -229,8 +229,7 @@ class SpectacleReventeAdmin(admin.ModelAdmin):
actions_on_bottom = True
def transfer(self, request, queryset):
for revente in queryset.all():
if revente.soldTo:
for revente in queryset.exclude(soldTo__isnull=True).all():
attrib = revente.attribution
attrib.participant = revente.soldTo
attrib.save()