Changeset 14154
- Timestamp:
- 5 Sep 2016, 04:45:14 (8 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/session_results_presentation.py
r14138 r14154 86 86 continue 87 87 # Session GPA can be determined 88 gpaclass = students_utils.getClassFromCGPA(level_obj.gpa)[0] 88 #gpaclass = students_utils.getClassFromCGPA(level_obj.gpa)[0] 89 90 # 02/09/16: AAUE requested to use the CGPA 91 gpaclass = students_utils.getClassFromCGPA( 92 level_obj.self.cumulative_params[0])[0] 93 89 94 table[gpaclass].append(line) 90 95 return table -
main/waeup.kofa/trunk/src/waeup/kofa/students/studylevel.py
r14133 r14154 174 174 for this level. 175 175 All levels below this level are taken under consideration 176 (including repeating levels). This method is used for level reports. 176 (including repeating levels). 177 This method is used for level reports and meanwhile also 178 for session results presentations. 177 179 """ 178 180 credits_passed = 0
Note: See TracChangeset for help on using the changeset viewer.