Changeset 15937 for main/kofacustom.iuokada/trunk/src/kofacustom
- Timestamp:
- 17 Jan 2020, 15:23:05 (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/etranzact/browser.py
r15899 r15937 205 205 'science','clinical','develop','municipal', 206 206 'alumni','conv','matric','waecneco','jambver','pharmlab','lo_ident', 207 'change_course','make_up','iuits','fine','combi'), 207 'change_course','resit1','resit2','resit3','resit4','resit5', 208 'resit6','resit7','resit8','resit9','iuits','fine','combi'), 208 209 } -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/interfaces.py
r15789 r15937 206 206 fine_fee = schema.Float( 207 207 title = _(u'Fine'), 208 default = 0.0, 209 required = False, 210 ) 211 212 resit_fee = schema.Float( 213 title = _(u'Make-Up Examination Course Fee'), 208 214 default = 0.0, 209 215 required = False, -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/browser.py
r15870 r15937 29 29 StudentBasePDFFormPage, ExportPDFCourseRegistrationSlip, 30 30 CourseTicketDisplayFormPage, StudentTriggerTransitionFormPage, 31 StartClearancePage, 31 32 msave, emit_lock_message) 32 33 from waeup.kofa.students.interfaces import ( … … 206 207 sigs_in_footer=self._sigsInFooter(), 207 208 note=self.note) 209 210 class CustomStartClearancePage(StartClearancePage): 211 with_ac = False -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/utils.py
r15810 r15937 140 140 return _('Study course data are incomplete.'), None 141 141 amount = academic_session.clearance_fee 142 elif category.startswith('resit'): 143 amount = academic_session.resit_fee 144 number = int(category.strip('resit')) 145 amount *= number 142 146 #elif category == 'bed_allocation': 143 147 # p_item = self.getAccommodationDetails(student)['bt'] -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py
r15877 r15937 60 60 'fine': 'Fine', 61 61 'combi': 'Combi Payment', 62 'resit1': '1 Make-Up Examination Course', 63 'resit2': '2 Make-Up Examination Courses', 64 'resit3': '3 Make-Up Examination Courses', 65 'resit4': '4 Make-Up Examination Courses', 66 'resit5': '5 Make-Up Examination Courses', 67 'resit6': '6 Make-Up Examination Course', 68 'resit7': '7 Make-Up Examination Courses', 69 'resit8': '8 Make-Up Examination Courses', 70 'resit9': '9 Make-Up Examination Courses', 62 71 } 63 72 … … 91 100 'lo_ident': 'Letter of Identification Fee', 92 101 'change_course': 'Change of Course Fee', 93 'make_up': 'Make-up Fee',102 #'make_up': 'Make-up Fee', 94 103 'iuits': 'IUITS Fee', 95 104 'fine': 'Fine', 96 105 'combi': 'Combi Payment', 106 'resit1': '1 Make-Up Examination Course', 107 'resit2': '2 Make-Up Examination Courses', 108 'resit3': '3 Make-Up Examination Courses', 109 'resit4': '4 Make-Up Examination Courses', 110 'resit5': '5 Make-Up Examination Courses', 111 'resit6': '6 Make-Up Examination Course', 112 'resit7': '7 Make-Up Examination Courses', 113 'resit8': '8 Make-Up Examination Courses', 114 'resit9': '9 Make-Up Examination Courses', 97 115 } 98 116
Note: See TracChangeset for help on using the changeset viewer.