Skip to content

Commit

Permalink
SemesterStartDate, SemesterEndDate -> StartDate, EndDate
Browse files Browse the repository at this point in the history
original StartDate (column name: TermStart) commented out: same value as SemesterStartDate, all combined into the StartDate column of new format
Semester Length = EndDate - StartDate
  • Loading branch information
SophiaSun18 committed Mar 11, 2024
1 parent bc2efe3 commit ade7977
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client-course-schedulizer/src/utilities/helpers/readCSV.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const registrarSpreadsheetFields: ValidFields = {
// Day10Used: cf.day10UsedCallback,
DeliveryMode: cf.deliveryModeCallback,
Department: cf.departmentCallback,
EndDate: cf.endDateCallback,
FacultyLoad: cf.facultyHoursCallback,
// GlobalMax: cf.globalMaxCallback,
Group: cf.groupCallback,
Expand All @@ -71,13 +72,12 @@ const registrarSpreadsheetFields: ValidFields = {
MinimumCredits: cf.studentHoursCallback,
RoomCapacity: cf.roomCapacityCallback,
SectionCode: cf.letterCallback,
SectionEndDate: cf.endDateCallback,
SectionStartDate: cf.startDateCallback,
SectionStatus: cf.statusCallback,
SemesterHours: cf.semesterHourCallback,
SemesterLength: cf.semesterLengthCallback,
ShortTitle: cf.nameCallback,
StartDate: cf.termStartCallback,
// StartDate: cf.termStartCallback,
StartDate: cf.startDateCallback,
SubjectCode: cf.prefixCallback,
// Used: cf.usedCallback,
};
Expand Down

0 comments on commit ade7977

Please sign in to comment.