mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Subevent bulk-creation: Fix flaky test (#2177)
This commit is contained in:
@@ -1376,7 +1376,7 @@ class SubEventBulkEdit(SubEventQueryMixin, EventPermissionRequiredMixin, FormVie
|
|||||||
*(f.name for f in CheckinList._meta.fields if f.name not in (
|
*(f.name for f in CheckinList._meta.fields if f.name not in (
|
||||||
'id', 'event', 'limit_products', 'gates',
|
'id', 'event', 'limit_products', 'gates',
|
||||||
))
|
))
|
||||||
).order_by('subevent_id')
|
).order_by('subevent_id', 'name', 'pk')
|
||||||
|
|
||||||
if not all_lists:
|
if not all_lists:
|
||||||
return SubEvent.objects.none()
|
return SubEvent.objects.none()
|
||||||
|
|||||||
Reference in New Issue
Block a user