- Timestamp:
- 8 Jun 2020, 10:58:36 (4 years ago)
- Location:
- main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/etranzact/browser.py
r16104 r16111 275 275 'IUO_SCHOOL_FEES_FIRST_INSTALLMENT': ('schoolfee40',), 276 276 'IUO_SCHOOL_FEES_OTHER_INSTALLMENT': ('secondinstal',), 277 'IUO_TRANSCRIPT_FEE': ('transcript_overseas','transcript_local'), 277 278 'IUO_SUNDRY_FEES': ('combi',), 279 280 'IUO_MATRICULATION_FEE': ('matric',), 281 'IUO_LATE_REGISTRATION_FEE': ('late_registration',), 282 'IUO_WAEC/NECO_VERIFICATION_FEE': ('waecneco',), 283 'IUO_JAMB_VERIFICATION': ('jambver',), 284 'IUO_CONVOCATION_FEE': ('conv',), 285 'IUO_ALUMNI_FEE': ('alumni',), 286 'IUO_SCIENCE_BENCE_FEE': ('science',), 287 'IUO_LETTER_OF_IDENTIFICATION_FEE': ('lo_ident',), 288 'IUO_CHANGE_OF_COURSE_FEE': ('change_course',), 289 'IUO_IUITS_FEE': ('iuits',), 290 'IUO_FINES_FEE': ('fine',), 291 'IUO_PHARMACY_LAB_SUPPORT_FEE': ('pharmlab',), 292 'IUO_MAKEUP_FEE': ('resit1', 'resit2', 'resit3', 'resit4', 293 'resit5', 'resit6', 'resit7', 'resit8', 294 'resit9',), 295 'IUO_CLINICAL_FEE_MEDICAL_STUDENTS': ('clinical',), 296 'IUO_TRANSCRIPT_FEE_INTERNATIONAL': ('transcript_overseas',), 297 'IUO_TRANCRIPT_FEE_LOCAL': ('transcript_local',), 298 'IUO_CLEARANCE_FEE': ('clearance',), 299 'IUO_ID_CARD_FEE': ('id_card',), 278 300 'IUO_REGISTRATION_FEE': ('registration',), 301 'IUO_DEVELOPMENT_FEE': ('develop',), 302 'IUO_MUNICIPAL_FEE': ('municipal_fresh','municipal_returning'), 303 'IUO_BOOK_DEPOSIT': ('book',), 279 304 'IUO_PARENTS_CONSULTATIVE_FORUM_FEE': ('parentsconsult',), 280 'IUO_BOOK_DEPOSIT_FEE': ('book',),281 'IUO_MATRICULATION_FEE': ('matric',),282 'IUO_SUNDRY_FEES': ('late_registration',283 'science','clinical','develop','municipal',284 'alumni','conv','matric','waecneco','jambver','pharmlab','lo_ident',285 'change_course','resit1','resit2','resit3','resit4','resit5',286 'resit6','resit7','resit8','resit9','iuits','fine','combi'),287 305 } -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/interfaces.py
r15942 r16111 214 214 default = 0.0, 215 215 required = False, 216 ) 217 218 id_card_fee = schema.Float( 219 title = _(u'Student ID Card Fee'), 220 default = 0.0, 221 required = True, 216 222 ) 217 223 -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py
r16092 r16111 69 69 'resit8': '8 Make-Up Examination Courses', 70 70 'resit9': '9 Make-Up Examination Courses', 71 'id_card': 'Student ID Card', 71 72 } 72 73 … … 113 114 'resit8': '8 Make-Up Examination Courses', 114 115 'resit9': '9 Make-Up Examination Courses', 116 'id_card': 'Student ID Card', 115 117 } 116 118 … … 138 140 'iuits': 'IUITS Fee', 139 141 'fine': 'Fine', 142 'id_card': 'Student ID Card', 140 143 } 141 144 … … 160 163 'iuits': 'IUITS Fee', 161 164 'fine': 'Fine', 165 'id_card': 'Student ID Card', 162 166 } 163 167 … … 195 199 'resit8': '8 Make-Up Examination Courses', 196 200 'resit9': '9 Make-Up Examination Courses', 201 'id_card': 'Student ID Card', 197 202 } 198 203
Note: See TracChangeset for help on using the changeset viewer.