Changeset 14817 for main/waeup.uniben/trunk/src
- Timestamp:
- 23 Aug 2017, 16:31:59 (7 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/students/batching.py
r8914 r14817 17 17 ## 18 18 """Batch processing components for student objects. 19 20 Batch processors eat CSV files to add, update or remove large numbers21 of certain kinds of objects at once.22 23 Here we define the processors for students specific objects like24 students, studycourses, payment tickets and accommodation tickets.25 19 """ 20 from kofacustom.nigeria.students.batching import NigeriaStudentProcessor 21 from waeup.kofa.students.batching import StudentOnlinePaymentProcessor 26 22 from waeup.uniben.students.interfaces import ( 27 ICustomStudent, ICustomStudentUpdateByRegNo, 23 ICustomStudent, 24 ICustomStudentUpdateByRegNo, 28 25 ICustomStudentUpdateByMatricNo, 29 26 ICustomStudentOnlinePayment 30 27 ) 31 from waeup.kofa.students.batching import (32 StudentProcessor, StudentOnlinePaymentProcessor)33 28 34 class CustomStudentProcessor( StudentProcessor):29 class CustomStudentProcessor(NigeriaStudentProcessor): 35 30 """A batch processor for ICustomStudent objects. 36 31 """
Note: See TracChangeset for help on using the changeset viewer.