Changeset 14414


Ignore:
Timestamp:
17 Jan 2017, 08:11:04 (8 years ago)
Author:
Henrik Bettermann
Message:

FRNS criteria does not only apply to final levels.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/reports/level_report.py

    r14400 r14414  
    6767        end_level = getattr(stud['studycourse'].certificate, 'end_level', None)
    6868        if end_level and level >= end_level:
    69             if remark == 'FRNS':  # Faculty Requirements Not Satisfied
    70                 cgpa = ''
    71             else:
    72                 cgpa = '%.2f' % (int(100*level_obj.cumulative_params[0])/100.0)
     69            cgpa = '%.2f' % (int(100*level_obj.cumulative_params[0])/100.0)
    7370        else:
    7471            cgpa = '%.3f' % (int(1000*level_obj.cumulative_params[0])/1000.0)
     72        if remark == 'FRNS':  # Faculty Requirements Not Satisfied (AAUE)
     73            cgpa = ''
    7574        line = (
    7675                #stud.student_id,
Note: See TracChangeset for help on using the changeset viewer.