Changeset 14358
- Timestamp:
- 20 Dec 2016, 09:03:23 (8 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/interfaces.py
r13998 r14358 112 112 ) 113 113 114 clinexam_fee = schema.Float( 115 title = _(u'Clinical Examination Fee'), 116 default = 0.0, 117 required = False, 118 ) 119 114 120 def getSessionString(): 115 121 """Returns the session string from the vocabulary. -
main/waeup.uniben/trunk/src/waeup/uniben/interswitch/browser.py
r14237 r14358 106 106 elif self.context.p_category == 'jupeb': 107 107 self.pay_item_id = '5717' 108 elif self.context.p_category == 'clinexam': 109 self.pay_item_id = '5720' 108 110 109 111 xmldict['provider_amt'] = 100 * provider_amt -
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r14343 r14358 197 197 elif category == 'jupeb': 198 198 amount = academic_session.jupeb_fee 199 elif category == 'clinexam': 200 amount = academic_session.clinexam_fee 199 201 elif category == 'bed_allocation': 200 202 p_item = self.getAccommodationDetails(student)['bt'] -
main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py
r14050 r14358 83 83 'admission_checking': 'Admission Checking Fee', 84 84 'jupeb': 'JUPEB Examination Fee', 85 'registration': 'Total Registration Fee' 85 'registration': 'Total Registration Fee', 86 'clinexam':'Clinical Examination Fee', 86 87 } 87 88 … … 100 101 'transfer': 'Transfer Fee', 101 102 'jupeb': 'JUPEB Examination Fee', 103 'clinexam':'Clinical Examination Fee', 102 104 } 103 105
Note: See TracChangeset for help on using the changeset viewer.