Changeset 3759 for WAeUP_SRP/trunk/skins/waeup_fceoyo
- Timestamp:
- 12 Nov 2008, 13:19:51 (16 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_fceoyo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_fceoyo/getSchoolFee.py
r3739 r3759 23 23 if str(brain.level) == '000' and brain.review_state == 'cleared_and_validated': 24 24 if brain.department in ARTS: 25 d['all'] = 1 695025 d['all'] = 14770 26 26 else: 27 d['all'] = 1 755027 d['all'] = 15370 28 28 elif str(brain.level) == '100' and brain.review_state == 'cleared_and_validated': 29 29 if brain.department in ARTS: … … 31 31 else: 32 32 d['all'] = 10420 33 # new addition for prence to nce-i students whose fees are different from other nce-i students 34 elif str(brain.level) == '100' and brain.review_state == 'cleared_and_validated' and brain.entry_mode == 'prence': 35 if brain.department in ARTS: 36 d['all'] = 13320 37 else: 38 d['all'] = 14420 33 39 elif str(brain.level) == '100' and brain.review_state == 'returning': 34 40 if brain.department in ARTS: 35 d['all'] = 782041 d['all'] = 8320 36 42 else: 37 d['all'] = 8 42043 d['all'] = 8920 38 44 elif str(brain.level) in ('200','210','220'): 39 45 if brain.department in ARTS: … … 51 57 d['all'] = 4950 52 58 else: 53 d['all'] = 680059 d['all'] = 5550 54 60 else: 55 61 d['all'] = 0 -
WAeUP_SRP/trunk/skins/waeup_fceoyo/pay_interswitch.py
r3752 r3759 127 127 args[arg] = info[field] 128 128 129 bt_amount = 1750130 fceoyo_split = 750129 bt_amount = 2000 130 fceoyo_split = 500 131 131 132 #getSchoolFee provides pure school fee, the fees have to be added132 #getSchoolFee provides pure school fee, the other fees have to be added 133 133 total_amount = 100* (amount + interswitch_amount + bt_amount + fceoyo_split) 134 134 … … 142 142 143 143 if student_record.mode in ('ug_sw','prence',): 144 xmldict['fceoyo_acct'] = "0 285001000000899"144 xmldict['fceoyo_acct'] = "0061001000021076" 145 145 xmldict['bank_id'] = '89' 146 146 elif student_record.mode in ('ug_ft',): 147 xmldict['fceoyo_acct'] = " 1681001000137"147 xmldict['fceoyo_acct'] = "3030010073" 148 148 xmldict['bank_id'] = '125' 149 149 else: … … 157 157 <item_details detail_ref="%(detail_ref)s" college="fceoyo" department="%(department)s" faculty="%(faculty)s" > 158 158 <item_detail item_id="1" item_name="FCEOyo School Fee" item_amt="%(amount)s" bank_id="%(bank_id)s" acct_num="%(fceoyo_acct)s" /> 159 <item_detail item_id="2" item_name="FCEOyo Split" item_amt="%(fceoyo_split)s" bank_id="125" acct_num=" 1681001000119" />160 <item_detail item_id="3" item_name="BT" item_amt="%(bt_amount)s" bank_id="89" acct_num="006100100002109 5" />159 <item_detail item_id="2" item_name="FCEOyo Split" item_amt="%(fceoyo_split)s" bank_id="125" acct_num="3030010076" /> 160 <item_detail item_id="3" item_name="BT" item_amt="%(bt_amount)s" bank_id="89" acct_num="0061001000021096" /> 161 161 </item_details> 162 162 </payment_item_detail>""" % xmldict
Note: See TracChangeset for help on using the changeset viewer.