From a941378b80fbe6dab11bd9269686a25ce798356c Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 30 Oct 2020 16:49:32 +0100 Subject: [PATCH] Allow to book users to a seat even if self-seating is now available --- src/pretix/control/forms/orders.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pretix/control/forms/orders.py b/src/pretix/control/forms/orders.py index d00450e24..ff0eaa93e 100644 --- a/src/pretix/control/forms/orders.py +++ b/src/pretix/control/forms/orders.py @@ -400,7 +400,6 @@ class OrderPositionChangeForm(forms.Form): self.fields['tax_rule'].label_from_instance = self.taxrule_label_from_instance if not instance.seat and not ( - not instance.event.settings.seating_choice and instance.item.seat_category_mappings.filter(subevent=instance.subevent).exists() ): del self.fields['seat']