Changeset 8912


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

Merged with waeup.aaue 8910:HEAD.

Location:
main/waeup.futminna/trunk/src/waeup/futminna
Files:
2 edited
1 copied

Legend:

Unmodified
Added
Removed
  • main/waeup.futminna/trunk/src/waeup/futminna

  • main/waeup.futminna/trunk/src/waeup/futminna/students/batching.py

    r8619 r8912  
    2626from waeup.futminna.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
  • main/waeup.futminna/trunk/src/waeup/futminna/students/browser.py

    r8911 r8912  
    2424    NigeriaExportPDFPaymentSlipPage)
    2525
    26 from waeup.aaue.students.interfaces import ICustomStudentOnlinePayment
     26from waeup.futminna.students.interfaces import ICustomStudentOnlinePayment
    2727
    2828class CustomOnlinePaymentDisplayFormPage(NigeriaOnlinePaymentDisplayFormPage):
Note: See TracChangeset for help on using the changeset viewer.