mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Check-in: Do not ask questions on exit of venue
This commit is contained in:
@@ -594,7 +594,7 @@ def perform_checkin(op: OrderPosition, clist: CheckinList, given_answers: dict,
|
|||||||
clist.event.questions.filter(ask_during_checkin=True, items__in=[op.item_id])
|
clist.event.questions.filter(ask_during_checkin=True, items__in=[op.item_id])
|
||||||
)
|
)
|
||||||
require_answers = []
|
require_answers = []
|
||||||
if checkin_questions:
|
if type != Checkin.TYPE_EXIT and checkin_questions:
|
||||||
answers = {a.question: a for a in op.answers.all()}
|
answers = {a.question: a for a in op.answers.all()}
|
||||||
for q in checkin_questions:
|
for q in checkin_questions:
|
||||||
if q not in given_answers and q not in answers:
|
if q not in given_answers and q not in answers:
|
||||||
|
|||||||
Reference in New Issue
Block a user