Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 056ed94

Browse files
committed
Add exporting swag tiers
1 parent e641599 commit 056ed94

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

common/database/tables/export.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# The valid exports for each table
1313
VALID_EXPORTS = {
1414
"applications": {"all", "mlh-registered", "resume-book"},
15-
"attendance": {"check-ins", "events", "event-feedback"},
15+
"attendance": {"check-ins", "events", "event-feedback", "swag-tiers"},
1616
}
1717

1818

frontend/src/organizers/pages/exports/New.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ const KINDS: Record<string, Record<string, string>> = {
2020
'mlh-registered': 'MLH Registrations',
2121
'resume-book': 'Resume Book',
2222
},
23-
[Table.Attendance]: { 'check-ins': 'Check-ins', events: 'Events', 'event-feedback': 'Event Feedback' },
23+
[Table.Attendance]: {
24+
'check-ins': 'Check-ins',
25+
events: 'Events',
26+
'event-feedback': 'Event Feedback',
27+
'swag-tiers': 'Swag Tiers',
28+
},
2429
};
2530

2631
interface Values {

tasks/handlers/integration/export/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from common.settings import SETTINGS
1111

1212
from .applications import All, MLHRegistered, ResumeBook
13-
from .attendance import CheckIns, EventFeedback, Events
13+
from .attendance import CheckIns, EventFeedback, Events, SwagTiers
1414
from .base import Exporter
1515

1616
manual = True
@@ -29,6 +29,7 @@
2929
"check-ins": CheckIns(),
3030
"events": Events(),
3131
"event-feedback": EventFeedback(),
32+
"swag-tiers": SwagTiers(),
3233
},
3334
}
3435

tasks/handlers/integration/export/attendance.py

+16
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
Feedback,
1010
Participant,
1111
School,
12+
SwagTier,
1213
)
1314

1415
from .base import Exporter
@@ -73,3 +74,18 @@ class EventFeedback(Exporter):
7374
.join_from(Event, Feedback)
7475
.group_by(Event.name)
7576
)
77+
78+
79+
class SwagTiers(Exporter):
80+
header = ["ID", "First Name", "Last Name", "Email", "Tier"]
81+
statement = (
82+
select(
83+
Participant.id,
84+
Participant.first_name,
85+
Participant.last_name,
86+
Participant.email,
87+
SwagTier.name,
88+
)
89+
.join_from(Participant, SwagTier)
90+
.order_by(Participant.swag_tier_id)
91+
)

0 commit comments

Comments
 (0)