Changeset 17346 for main/kofacustom.edocons/trunk/src/kofacustom/edocons
- Timestamp:
- 10 Mar 2023, 09:39:10 (20 months ago)
- Location:
- main/kofacustom.edocons/trunk/src/kofacustom/edocons/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/batching.py
r16639 r17346 19 19 """ 20 20 from kofacustom.nigeria.students.batching import NigeriaStudentProcessor 21 from waeup.kofa.students.batching import StudentOnlinePaymentProcessor 21 from waeup.kofa.students.batching import ( 22 StudentOnlinePaymentProcessor, 23 CourseTicketProcessor) 22 24 from kofacustom.edocons.students.interfaces import ( 23 25 ICustomStudent, 24 26 ICustomStudentUpdateByRegNo, 25 27 ICustomStudentUpdateByMatricNo, 26 ICustomStudentOnlinePayment 28 ICustomStudentOnlinePayment, 29 ICustomCourseTicketImport 27 30 ) 28 31 … … 38 41 """ 39 42 iface = ICustomStudentOnlinePayment 43 44 class CustomCourseTicketProcessor(CourseTicketProcessor): 45 """A batch processor for ICourseTicket objects. 46 """ 47 iface = ICustomCourseTicketImport 48 49 @property 50 def available_fields(self): 51 fields = [ 52 'student_id','reg_number','matric_number', 53 'mandatory', 'score', 'carry_over', 'automatic', 54 'outstanding', 'course_category', 'level_session', 55 'title', 'credits', 'passmark', 'semester', 'ticket_session', 56 'unlock_score', 'previous', 'carryover_score', 57 ] + self.additional_fields 58 return sorted(fields) -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/interfaces.py
r17345 r17346 19 19 from zope import schema 20 20 from waeup.kofa.students.vocabularies import StudyLevelSource 21 from waeup.kofa.interfaces import (IKofaObject, academic_sessions_vocab) 21 22 from kofacustom.nigeria.students.interfaces import ( 22 23 INigeriaStudentBase, INigeriaUGStudentClearance, INigeriaPGStudentClearance, … … 102 103 ICustomCourseTicket['carryover_score'].order = ICustomCourseTicket['carry_over'].order 103 104 105 class ICustomCourseTicketImport(ICustomCourseTicket): 106 """An interface for importing course results and nothing more. 107 """ 108 109 score = schema.Int( 110 title = _(u'Score'), 111 required = False, 112 readonly = False, 113 ) 114 115 level_session = schema.Choice( 116 title = _(u'Level Session'), 117 source = academic_sessions_vocab, 118 required = False, 119 readonly = False, 120 ) 121 122 carryover_score = schema.Int( 123 title = _(u'Carry-over Score'), 124 default = None, 125 required = False, 126 missing_value = None, 127 max = 100, 128 ) 129 104 130 class ICustomStudentUpdateByRegNo(INigeriaStudentUpdateByRegNo): 105 131 """Representation of a student. Skip regular reg_number validation.
Note: See TracChangeset for help on using the changeset viewer.