forked from CGM_Public/pretix_original
Do not treat event as free if there are mandatory non-free addons (#3646)
This commit is contained in:
@@ -1020,7 +1020,7 @@ Vue.component('pretix-widget-event-form', {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (item.variations.length === 0 && item.price.gross !== "0.00") {
|
||||
if ((item.variations.length === 0 && item.price.gross !== "0.00") || item.mandatory_priced_addons) {
|
||||
all_free = false;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user