fairy -> contributor
This commit is contained in:
parent
db90ed20db
commit
a6ecaad866
1 changed files with 8 additions and 8 deletions
|
@ -166,11 +166,11 @@ class Command(BaseCommand):
|
||||||
|
|
||||||
# Tickets
|
# Tickets
|
||||||
|
|
||||||
self.ticket_fairy = self.find_or_make(
|
self.ticket_contributor = self.find_or_make(
|
||||||
inv.Product,
|
inv.Product,
|
||||||
("name", "category",),
|
("name", "category",),
|
||||||
category=self.ticket,
|
category=self.ticket,
|
||||||
name="Fairy Penguin Sponsor",
|
name="Contributor",
|
||||||
price=Decimal("1999.00"),
|
price=Decimal("1999.00"),
|
||||||
reservation_duration=hours(24),
|
reservation_duration=hours(24),
|
||||||
order=1,
|
order=1,
|
||||||
|
@ -450,7 +450,7 @@ class Command(BaseCommand):
|
||||||
)
|
)
|
||||||
hide_all_tickets.group.set([self.group_prepurchase])
|
hide_all_tickets.group.set([self.group_prepurchase])
|
||||||
hide_all_tickets.products.set([
|
hide_all_tickets.products.set([
|
||||||
self.ticket_fairy,
|
self.ticket_contributor,
|
||||||
self.ticket_professional,
|
self.ticket_professional,
|
||||||
self.ticket_hobbyist,
|
self.ticket_hobbyist,
|
||||||
self.ticket_student,
|
self.ticket_student,
|
||||||
|
@ -465,7 +465,7 @@ class Command(BaseCommand):
|
||||||
limit=600,
|
limit=600,
|
||||||
)
|
)
|
||||||
public_ticket_cap.products.set([
|
public_ticket_cap.products.set([
|
||||||
self.ticket_fairy,
|
self.ticket_contributor,
|
||||||
self.ticket_professional,
|
self.ticket_professional,
|
||||||
self.ticket_hobbyist,
|
self.ticket_hobbyist,
|
||||||
self.ticket_student,
|
self.ticket_student,
|
||||||
|
@ -484,7 +484,7 @@ class Command(BaseCommand):
|
||||||
])
|
])
|
||||||
|
|
||||||
public_ticket_cap.products.set([
|
public_ticket_cap.products.set([
|
||||||
self.ticket_fairy,
|
self.ticket_contributor,
|
||||||
self.ticket_professional,
|
self.ticket_professional,
|
||||||
self.ticket_hobbyist,
|
self.ticket_hobbyist,
|
||||||
self.ticket_student,
|
self.ticket_student,
|
||||||
|
@ -626,7 +626,7 @@ class Command(BaseCommand):
|
||||||
)
|
)
|
||||||
pdns_by_ticket.enabling_products.set([
|
pdns_by_ticket.enabling_products.set([
|
||||||
self.ticket_professional,
|
self.ticket_professional,
|
||||||
self.ticket_fairy,
|
self.ticket_contributor,
|
||||||
self.ticket_media,
|
self.ticket_media,
|
||||||
self.ticket_sponsor,
|
self.ticket_sponsor,
|
||||||
])
|
])
|
||||||
|
@ -693,7 +693,7 @@ class Command(BaseCommand):
|
||||||
cond.DiscountForProduct,
|
cond.DiscountForProduct,
|
||||||
("discount", "product"),
|
("discount", "product"),
|
||||||
discount=discount,
|
discount=discount,
|
||||||
product=self.ticket_fairy,
|
product=self.ticket_contributor,
|
||||||
price=Decimal("150.00"),
|
price=Decimal("150.00"),
|
||||||
quantity=1, # Per user
|
quantity=1, # Per user
|
||||||
)
|
)
|
||||||
|
@ -773,7 +773,7 @@ class Command(BaseCommand):
|
||||||
description="Complimentary for ticket holder (Professional-level)",
|
description="Complimentary for ticket holder (Professional-level)",
|
||||||
)
|
)
|
||||||
ticket_prolike_inclusions.enabling_products.set([
|
ticket_prolike_inclusions.enabling_products.set([
|
||||||
self.ticket_fairy,
|
self.ticket_contributor,
|
||||||
self.ticket_professional,
|
self.ticket_professional,
|
||||||
self.ticket_media,
|
self.ticket_media,
|
||||||
self.ticket_sponsor,
|
self.ticket_sponsor,
|
||||||
|
|
Loading…
Reference in a new issue