Ignore:
Timestamp:
11 Aug 2016, 09:22:47 (8 years ago)
Author:
Henrik Bettermann
Message:

PG students must not pay certain fees.

File:
1 edited

Legend:

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

    r13855 r14069  
    181181            else:
    182182                return _(u'No bed allocated.'), None
    183         elif category == 'welfare':
     183        elif category == 'welfare' and not student.is_postgrad:
    184184            amount = academic_session.welfare_fee
    185         elif category == 'union':
     185        elif category == 'union' and not student.is_postgrad:
    186186            amount = academic_session.union_fee
    187         elif category == 'lapel':
     187        elif category == 'lapel' and not student.is_postgrad:
    188188            amount = academic_session.lapel_fee
    189         elif category == 'matric_gown':
     189        elif category == 'matric_gown' and not student.is_postgrad:
    190190            amount = academic_session.matric_gown_fee
    191         elif category == 'concessional':
     191        elif category == 'concessional' and not student.is_postgrad:
    192192            amount = academic_session.concessional_fee
    193193        elif student.current_mode == 'found' and category not in (
Note: See TracChangeset for help on using the changeset viewer.