Changeset 8911 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 4 Jul 2012, 10:17:55 (12 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/batching.py
r8583 r8911 26 26 from waeup.aaue.students.interfaces import ( 27 27 ICustomStudent, ICustomStudentUpdateByRegNo, 28 ICustomStudentUpdateByMatricNo 28 ICustomStudentUpdateByMatricNo, 29 ICustomStudentOnlinePayment 29 30 ) 30 from waeup.kofa.students.batching import StudentProcessor 31 from waeup.kofa.students.batching import ( 32 StudentProcessor, StudentOnlinePaymentProcessor) 31 33 32 34 class CustomStudentProcessor(StudentProcessor): 33 """A batch processor for I Student objects.35 """A batch processor for ICustomStudent objects. 34 36 """ 35 37 iface = ICustomStudent 36 38 iface_byregnumber = ICustomStudentUpdateByRegNo 37 39 iface_bymatricnumber = ICustomStudentUpdateByMatricNo 40 41 class CustomStudentOnlinePaymentProcessor(StudentOnlinePaymentProcessor): 42 """A batch processor for ICustomStudentOnlinePayment objects. 43 """ 44 iface = ICustomStudentOnlinePayment
Note: See TracChangeset for help on using the changeset viewer.