- Timestamp:
- 26 Feb 2020, 20:45:25 (5 years ago)
- Location:
- main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/locales/en/LC_MESSAGES/waeup.kofa.po
r15883 r16015 108 108 109 109 msgid "Add balance payment ticket" 110 msgstr "Add balance payment"110 msgstr "Add custom/balance payment" 111 111 112 112 msgid "Ticket Creation Date" … … 115 115 msgid "Create ticket" 116 116 msgstr "Create payment" 117 118 msgid "Add balance" 119 msgstr "Add custom/balance payment" 120 121 msgid "Balance Amount" 122 msgstr "Custom/Balance Amount" -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/browser.py
r15999 r16015 29 29 StudentBasePDFFormPage, ExportPDFCourseRegistrationSlip, 30 30 CourseTicketDisplayFormPage, StudentTriggerTransitionFormPage, 31 StartClearancePage, 31 StartClearancePage, BalancePaymentAddFormPage, 32 32 msave, emit_lock_message) 33 33 from waeup.kofa.students.interfaces import ( … … 216 216 class CustomStartClearancePage(StartClearancePage): 217 217 with_ac = False 218 219 class CustomBalancePaymentAddFormPage(BalancePaymentAddFormPage): 220 grok.require('waeup.handleStudent') -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/viewlets.py
r15942 r16015 29 29 ExportPDFClearanceSlip, StudyCourseDisplayFormPage, 30 30 StudyLevelDisplayFormPage, StudentBaseDisplayFormPage) 31 from waeup.kofa.students.viewlets import ( 32 AddPreviousPaymentActionButton, AddBalancePaymentActionButton) 31 33 32 34 from kofacustom.nigeria.interfaces import MessageFactory as _ … … 41 43 icon = 'actionicon_book.png' 42 44 45 class AddBalancePaymentActionButton(AddBalancePaymentActionButton): 46 grok.require('waeup.handleStudent') 43 47 44 48 class GetMatricNumberActionButton(ManageActionButton): -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py
r15937 r16015 162 162 } 163 163 164 BALANCE_PAYMENT_CATEGORIES = { 165 'schoolfee': 'Tuition, Accommodation, Adm. Charges (total amount)', 166 'registration': 'Registration Fee', 167 'transcript_local': 'Transcript Fee (Local Students)', 168 'transcript_overseas': 'Transcript Fee (Oversea Students)', 169 'late_registration': 'Late Registration Fee', 170 'science': 'Science Bench Fee', 171 'clinical': 'Clinical Fee (Medical Students)', 172 'develop': 'Development Fee', 173 'municipal_fresh': 'Municipal Fee (Fresh Students)', 174 'municipal_returning': 'Municipal Fee (Returning Students)', 175 'alumni': 'Alumni Fee', 176 'conv': 'Convocation Fee', 177 'matric': 'Matriculation Fee', 178 'waecneco': 'WAEC & NECO Verification', 179 'jambver': 'JAMB Verification', 180 'book': 'Book Deposit', 181 'parentsconsult': 'Parents Consultative Forum (PCF) Fee', 182 'pharmlab': 'Pharmacy Lab Support Fee', 183 'lo_ident': 'Letter of Identification Fee', 184 'change_course': 'Change of Course Fee', 185 'iuits': 'IUITS Fee', 186 'fine': 'Fine', 187 'combi': 'Combi Payment', 188 'resit1': '1 Make-Up Examination Course', 189 'resit2': '2 Make-Up Examination Courses', 190 'resit3': '3 Make-Up Examination Courses', 191 'resit4': '4 Make-Up Examination Courses', 192 'resit5': '5 Make-Up Examination Courses', 193 'resit6': '6 Make-Up Examination Course', 194 'resit7': '7 Make-Up Examination Courses', 195 'resit8': '8 Make-Up Examination Courses', 196 'resit9': '9 Make-Up Examination Courses', 197 } 198 164 199 APP_CATS_DICT = { 165 200 'basic': 'UAS, PUTME, PUDE, PCE, PRENCE',
Note: See TracChangeset for help on using the changeset viewer.