Changeset 16757
- Timestamp:
- 27 Jan 2022, 06:41:53 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py
r16755 r16757 348 348 # not exist, students and managers will be prevented from registering 349 349 # the corresponding course. 350 # If a certificate course is found, the course_category will be used 351 # for the course ticket. 350 352 cert = self.__parent__.certificate 351 353 ticket_allowed = False … … 353 355 if val.course == course: 354 356 ticket_allowed = True 357 course_category = val.course_category 355 358 break 356 359 if not ticket_allowed: … … 363 366 ticket.dcode = course.__parent__.__parent__.code 364 367 ticket.credits = course.credits 368 ticket.course_category = course_category 365 369 if self.student.entry_session < 2013: 366 370 ticket.passmark = course.passmark - 5 … … 383 387 ticket.mandatory = val.mandatory 384 388 ticket.carry_over = False 385 ticket.course_category = val.course_category389 #ticket.course_category = val.course_category 386 390 try: 387 391 self.addCourseTicket(ticket, val.course)
Note: See TracChangeset for help on using the changeset viewer.