diff --git a/src/pretix/control/forms/item.py b/src/pretix/control/forms/item.py index 65bcca3a62..6f90f3cac6 100644 --- a/src/pretix/control/forms/item.py +++ b/src/pretix/control/forms/item.py @@ -223,6 +223,7 @@ class ItemCreateForm(I18nModelForm): self.instance.min_per_order = self.cleaned_data['copy_from'].min_per_order self.instance.max_per_order = self.cleaned_data['copy_from'].max_per_order self.instance.checkin_attention = self.cleaned_data['copy_from'].checkin_attention + self.instance.free_price = self.cleaned_data['copy_from'].free_price self.instance.position = (self.event.items.aggregate(p=Max('position'))['p'] or 0) + 1 instance = super().save(*args, **kwargs)