From 76e86cbdd1d888883d5b70c2a53980b757c93b0f Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 2 Jun 2021 18:24:01 +0200 Subject: [PATCH] Fix ignore_for_event_availability in SubEvent bulk editor --- src/pretix/control/views/subevents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/views/subevents.py b/src/pretix/control/views/subevents.py index ef6a9bd6a0..ebf4edf858 100644 --- a/src/pretix/control/views/subevents.py +++ b/src/pretix/control/views/subevents.py @@ -1207,7 +1207,7 @@ class SubEventBulkEdit(SubEventQueryMixin, EventPermissionRequiredMixin, FormVie change_data = {k: f.cleaned_data.get(k) for k in f.changed_data} for se in subevents: q = list(se.checkinlist_set.all())[qidx] - for fname in ('name', 'all_products', 'include_pending', 'allow_entry_after_exit'): + for fname in ('name', 'all_products', 'include_pending', 'allow_entry_after_exit', 'ignore_for_event_availability'): setattr(q, fname, f.cleaned_data.get(fname)) q.save() if 'limit_products' in f.changed_data: