- Timestamp:
- 4 Oct 2019, 21:11:24 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/interfaces.py
r15590 r15645 79 79 # Additional fees in custom package add here 80 80 81 late_registration_fee = schema.Float( 82 title = _(u'Late Registration Fee'), 83 default = 0.0, 84 required = False, 85 ) 86 87 science_fee = schema.Float( 88 title = _(u'Science Bench Fee'), 89 default = 0.0, 90 required = False, 91 ) 92 93 clinical_fee = schema.Float( 94 title = _(u'Clinical Fee (Medical Students)'), 95 default = 0.0, 96 required = False, 97 ) 98 99 develop_fee = schema.Float( 100 title = _(u'Development Fee'), 101 default = 0.0, 102 required = False, 103 ) 104 105 municipal_fee = schema.Float( 106 title = _(u'Municipal Fee'), 107 default = 0.0, 108 required = False, 109 ) 110 111 alumni_fee = schema.Float( 112 title = _(u'Alumni Fee'), 113 default = 0.0, 114 required = False, 115 ) 116 117 conv_fee = schema.Float( 118 title = _(u'Convocation Fee'), 119 default = 0.0, 120 required = False, 121 ) 122 123 matric_fee = schema.Float( 124 title = _(u'Matriculation Fee'), 125 default = 0.0, 126 required = False, 127 ) 128 129 waecneco_fee = schema.Float( 130 title = _(u'WAEC & NECO Verification Fee'), 131 default = 0.0, 132 required = False, 133 ) 134 135 jambver_fee = schema.Float( 136 title = _(u'JAMB Verification Fee'), 137 default = 0.0, 138 required = False, 139 ) 140 141 book_fee = schema.Float( 142 title = _(u'Book Deposit'), 143 default = 0.0, 144 required = False, 145 ) 146 147 parentsconsult_fee = schema.Float( 148 title = _(u'Parents Consultative Forum (PCF) Fee'), 149 default = 0.0, 150 required = False, 151 ) 152 153 pharmlab_fee = schema.Float( 154 title = _(u'Pharmacy Lab Support Fee'), 155 default = 0.0, 156 required = False, 157 ) 81 158 82 159 def getSessionString():
Note: See TracChangeset for help on using the changeset viewer.