Ignore:
Timestamp:
16 Jun 2018, 05:45:48 (6 years ago)
Author:
Henrik Bettermann
Message:

Irrespective of the CGPA of a student, if the He/She? has
3rd Extension, such student will be graduated with a "Pass".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py

    r14955 r15054  
    216216            if self.cumulative_params[0] < failed_limit:
    217217                return 'Fail'
     218            dummy, repeat = divmod(self.level, 100)
     219            if self.cumulative_params[0] < 5.1 and repeat == 2:
     220                # Irrespective of the CGPA of a student, if the He/She has
     221                # 3rd Extension, such student will be graduated with a "Pass".
     222                return 'Pass'
    218223            if self.cumulative_params[0] < 1.5:
    219224                if is_dp:
Note: See TracChangeset for help on using the changeset viewer.