Changeset 7279
- Timestamp:
- 6 Dec 2011, 11:12:43 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_aaua/getSchoolFee.py
r6486 r7279 90 90 elif brain.review_state in i2_states and str(brain.level) in ('700',) and instalment == '2': 91 91 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 92 97 # 700 level returning students MPA 93 98 elif brain.review_state == 'returning' and instalment == '1' and brain.course in MPA: 94 99 d['all'] = 80000 95 100 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 98 103 elif brain.review_state == 'returning' and instalment == '1': 99 104 d['all'] = 95000 100 105 elif brain.review_state in i2_states and instalment == '2': 101 106 d['all'] = 75000 107 102 108 103 109 next_info = context.getNextInfo(brain)
Note: See TracChangeset for help on using the changeset viewer.