Changeset 14154


Ignore:
Timestamp:
5 Sep 2016, 04:45:14 (8 years ago)
Author:
Henrik Bettermann
Message:

AAUE requested to use the CGPA on session results reports.

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  
    8686            continue
    8787        # 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
    8994        table[gpaclass].append(line)
    9095    return table
  • main/waeup.kofa/trunk/src/waeup/kofa/students/studylevel.py

    r14133 r14154  
    174174        for this level.
    175175        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.
    177179        """
    178180        credits_passed = 0
Note: See TracChangeset for help on using the changeset viewer.