Changeset 7279 for WAeUP_SRP


Ignore:
Timestamp:
6 Dec 2011, 11:12:43 (13 years ago)
Author:
Henrik Bettermann
Message:

Add pg_pt fees for entry sessions 5, 6, and 7.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_aaua/getSchoolFee.py

    r6486 r7279  
    9090        elif brain.review_state in i2_states and str(brain.level) in ('700',) and instalment == '2':
    9191            d['all'] = 80000           
     92        # 700 level returning students MPA and non-MPA with  entry session 05 or 06
     93        elif brain.review_state == 'returning' and instalment == '1' and brain.entry_session in ('05','06','07',): # returning 700 to 800 level
     94            d['all'] = 35000
     95        elif brain.review_state in i2_states and instalment == '2' and brain.entry_session in ('05','06','07',):
     96            d['all'] = 30000       
    9297        # 700 level returning students MPA
    9398        elif brain.review_state == 'returning' and instalment == '1' and brain.course in MPA:
    9499            d['all'] = 80000
    95100        elif brain.review_state in i2_states and instalment == '2' and brain.course in MPA:
    96             d['all'] = 75000
    97         # 700 level returning students non-MPA     
     101            d['all'] = 75000       
     102        # 700 level returning students non-MPA
    98103        elif brain.review_state == 'returning' and instalment == '1':
    99104            d['all'] = 95000
    100105        elif brain.review_state in i2_states and instalment == '2':
    101106            d['all'] = 75000
     107       
    102108
    103109next_info = context.getNextInfo(brain)
Note: See TracChangeset for help on using the changeset viewer.