pretixdroid: Search should also return unpaid tickets

This commit is contained in:
Raphael Michel
2017-12-04 20:35:50 +01:00
parent 40b84fd676
commit 0c23f36e36

View File

@@ -259,7 +259,6 @@ class ApiSearchView(ApiView):
qs = OrderPosition.objects.filter(
order__event=self.event,
order__status=Order.STATUS_PAID,
subevent=self.config.list.subevent
).annotate(
last_checked_in=Subquery(cqs)