Add checkin_attetion field to Order model

This commit is contained in:
Raphael Michel
2018-02-22 10:49:17 +01:00
parent 70fbbfe2a0
commit 2434bf14d5
10 changed files with 63 additions and 8 deletions

View File

@@ -162,6 +162,13 @@ class Order(LoggedModel):
help_text=_("The text entered in this field will not be visible to the user and is available for your "
"convenience.")
)
checkin_attention = models.BooleanField(
verbose_name=_('Requires special attention'),
default=False,
help_text=_('If you set this, the check-in app will show a visible warning that tickets of this order require '
'special attention. This will not show any details or custom message, so you need to brief your '
'check-in staff how to handle these cases.')
)
expiry_reminder_sent = models.BooleanField(
default=False
)