Changeset 14414 for main/waeup.kofa/trunk/src
- Timestamp:
- 17 Jan 2017, 08:11:04 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/level_report.py
r14400 r14414 67 67 end_level = getattr(stud['studycourse'].certificate, 'end_level', None) 68 68 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) 73 70 else: 74 71 cgpa = '%.3f' % (int(1000*level_obj.cumulative_params[0])/1000.0) 72 if remark == 'FRNS': # Faculty Requirements Not Satisfied (AAUE) 73 cgpa = '' 75 74 line = ( 76 75 #stud.student_id,
Note: See TracChangeset for help on using the changeset viewer.