Fix some rules that were overly generous
This commit is contained in:
parent
0103f9a91f
commit
abe4f5ad7a
1 changed files with 3 additions and 5 deletions
|
@ -646,7 +646,6 @@ class Command(BaseCommand):
|
|||
)
|
||||
pdns_by_staff.group.set([
|
||||
self.group_team,
|
||||
self.group_volunteers,
|
||||
])
|
||||
pdns_by_staff.categories.set([self.pdns_category, ])
|
||||
|
||||
|
@ -655,7 +654,7 @@ class Command(BaseCommand):
|
|||
cond.CategoryFlag,
|
||||
("description", ),
|
||||
description="GottaGettaTicketFirst",
|
||||
condition=cond.FlagBase.ENABLE_IF_TRUE,
|
||||
condition=cond.FlagBase.DISABLE_IF_FALSE,
|
||||
enabling_category = self.ticket
|
||||
)
|
||||
needs_a_ticket.categories.set([
|
||||
|
@ -798,15 +797,14 @@ class Command(BaseCommand):
|
|||
])
|
||||
free_category(ticket_student_inclusions, self.t_shirt)
|
||||
|
||||
# Team & volunteer ticket inclusions
|
||||
# Team ticket inclusions
|
||||
ticket_staff_inclusions = self.find_or_make(
|
||||
cond.IncludedProductDiscount,
|
||||
("description", ),
|
||||
description="Complimentary for ticket holder (staff/volunteer)",
|
||||
description="Complimentary for ticket holder staff)",
|
||||
)
|
||||
ticket_staff_inclusions.enabling_products.set([
|
||||
self.ticket_team,
|
||||
self.ticket_volunteer,
|
||||
])
|
||||
free_category(ticket_staff_inclusions, self.penguin_dinner)
|
||||
|
||||
|
|
Loading…
Reference in a new issue