Ignore:
Timestamp:
29 Sep 2016, 08:54:32 (8 years ago)
Author:
Henrik Bettermann
Message:

Add imported_gpa and imported_cgpa fields and adjust exporters and batch processors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/students/batching.py

    r13865 r14206  
    2929    ICustomStudentOnlinePayment,
    3030    ICustomCourseTicketImport,
     31    ICustomStudentStudyLevel,
     32    ICustomStudentStudyCourse
    3133    )
    3234from waeup.kofa.students.batching import (
    3335    StudentProcessor, StudentOnlinePaymentProcessor,
     36    StudentStudyLevelProcessor,
     37    StudentStudyCourseProcessor,
    3438    CourseTicketProcessor)
    3539
     
    4650    iface = ICustomStudentOnlinePayment
    4751
     52class CustomStudentStudyCourseProcessor(StudentStudyCourseProcessor):
     53    """
     54    """
     55    iface = ICustomStudentStudyCourse
     56
     57class CustomStudentStudyLevelProcessor(StudentStudyLevelProcessor):
     58    """
     59    """
     60    iface = ICustomStudentStudyLevel
     61
    4862class CustomCourseTicketProcessor(CourseTicketProcessor):
    4963    """A batch processor for ICourseTicket objects.
Note: See TracChangeset for help on using the changeset viewer.