- Timestamp:
- 19 Oct 2011, 12:32:30 (13 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_futminna
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_futminna/getPaymentsFolderInfo.py
r6910 r6911 75 75 if payment_disabled: 76 76 info['payment_method'] = "" 77 info['acceptance'] = False 77 78 78 79 # end customization -
WAeUP_SRP/trunk/skins/waeup_futminna/getSchoolFee.py
r5795 r6911 13 13 """ 14 14 15 late_registration_fee = 500015 late_registration_fee = 0 16 16 17 17 d = {} … … 22 22 if brain.entry_mode == 'rmd_ft': 23 23 d['lrf'] = late_registration_fee 24 d['all'] = 80200 24 d['all'] = 80200 25 25 else: 26 26 d['lrf'] = late_registration_fee 27 d['all'] = 74200 28 27 d['all'] = 74200 28 29 29 # fresh 30 30 elif brain.review_state == 'cleared_and_validated': 31 31 if brain.mode == 'jm_ft': 32 32 d['lrf'] = late_registration_fee 33 d['all'] = 72700 33 d['all'] = 72700 34 34 elif brain.lga == 'foreigner': 35 35 d['lrf'] = late_registration_fee 36 d['all'] = 131500 36 d['all'] = 131500 37 37 else: 38 38 d['lrf'] = late_registration_fee 39 d['all'] = 4150039 d['all'] = 26500 # School Fee reduced by 15000 40 40 # returning 41 41 elif brain.review_state == 'returning': 42 42 if brain.mode == 'jm_ft': 43 43 d['lrf'] = late_registration_fee 44 d['all'] = 32500 44 d['all'] = 32500 45 45 elif brain.lga == 'foreigner': 46 46 d['lrf'] = late_registration_fee 47 d['all'] = 109500 47 d['all'] = 109500 48 48 else: 49 49 d['lrf'] = late_registration_fee 50 d['all'] = 19500 50 d['all'] = 19500 51 51 else: 52 52 d['all'] = 0 … … 61 61 62 62 return d 63
Note: See TracChangeset for help on using the changeset viewer.