Changeset 8911 for main/waeup.aaue


Ignore:
Timestamp:
4 Jul 2012, 10:17:55 (12 years ago)
Author:
Henrik Bettermann
Message:

We defined ICustomOnlinePayment from the scratch in AAUE. We have to use this interface in UI components and have thus to customize these components again.

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  
    2626from waeup.aaue.students.interfaces import (
    2727    ICustomStudent, ICustomStudentUpdateByRegNo,
    28     ICustomStudentUpdateByMatricNo
     28    ICustomStudentUpdateByMatricNo,
     29    ICustomStudentOnlinePayment
    2930    )
    30 from waeup.kofa.students.batching import StudentProcessor
     31from waeup.kofa.students.batching import (
     32    StudentProcessor, StudentOnlinePaymentProcessor)
    3133
    3234class CustomStudentProcessor(StudentProcessor):
    33     """A batch processor for IStudent objects.
     35    """A batch processor for ICustomStudent objects.
    3436    """
    3537    iface = ICustomStudent
    3638    iface_byregnumber = ICustomStudentUpdateByRegNo
    3739    iface_bymatricnumber = ICustomStudentUpdateByMatricNo
     40
     41class CustomStudentOnlinePaymentProcessor(StudentOnlinePaymentProcessor):
     42    """A batch processor for ICustomStudentOnlinePayment objects.
     43    """
     44    iface = ICustomStudentOnlinePayment
Note: See TracChangeset for help on using the changeset viewer.