Changeset 5021
- Timestamp:
- 15 Feb 2010, 12:16:06 (15 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_futminna
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_futminna/getSchoolFee.py
r4861 r5021 13 13 """ 14 14 15 late_registration_fee = 10000 15 16 16 17 d = {} … … 29 30 d['all'] = 72700 30 31 elif brain.lga == 'foreigner': 31 d['all'] = 131500 #+ 500032 d['all'] = 131500 #+ late_registration_fee 32 33 else: 33 d['all'] = 41500 #+ 500034 d['all'] = 41500 #+ late_registration_fee 34 35 # returning 35 36 elif brain.review_state == 'returning': 36 37 if brain.mode == 'jm_ft': 37 d['all'] = 32500 38 d['all'] = 32500 + late_registration_fee 38 39 elif brain.lga == 'foreigner': 39 d['all'] = 109500 40 d['all'] = 109500 + late_registration_fee 40 41 else: 41 d['all'] = 19500 #+ 500042 d['all'] = 19500 + late_registration_fee 42 43 else: 43 44 d['all'] = 0 -
WAeUP_SRP/trunk/skins/waeup_futminna/payments_view.pt
r4861 r5021 74 74 /> 75 75 <br /><br /> 76 <font tal:condition="python: False" color='red'>Surcharge for Late Registration of non-remedial students is 5000 Naira. </font>76 <font tal:condition="python:True" color='red'>Surcharge for Late Registration of returning students is 10000 Naira. </font> 77 77 </form> 78 78 <form tal:condition="python: info.get('payment_method') == 'sc_payment'"
Note: See TracChangeset for help on using the changeset viewer.