Changeset 17653 for main/waeup.aaue
- Timestamp:
- 7 Dec 2023, 09:56:52 (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py
r16900 r17653 371 371 ticket.credits = course.credits 372 372 ticket.course_category = course_category 373 if self.student.entry_session < 2013 :373 if self.student.entry_session < 2013 or self.student.entry_session > 2021: 374 374 ticket.passmark = course.passmark - 5 375 375 else: … … 443 443 if self.total_score >= 45: 444 444 return ('D',2) 445 if self.total_score >= self.passmark: # passmark changed in 2013 from 40 to 45 445 if self.total_score >= self.passmark: # passmark changed in 2013 from 40 to 45 and 2022 back to 40 446 446 return ('E',1) 447 447 return ('F',0)
Note: See TracChangeset for help on using the changeset viewer.