Changeset 8421 for main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Timestamp:
- 11 May 2012, 15:46:29 (13 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/browser.py
r8292 r8421 26 26 IApplicantRegisterUpdate, IApplicant, IApplicantEdit) 27 27 from waeup.kofa.applicants.browser import (ApplicantDisplayFormPage, 28 OnlinePaymentCallbackPage,ExportPDFPage,28 ExportPDFPage, 29 29 ApplicantManageFormPage, ApplicantEditFormPage, 30 30 ApplicantRegistrationPage, ApplicantAddFormPage, … … 33 33 ApplicantBaseDisplayFormPage) 34 34 from waeup.kofa.applicants.viewlets import ( 35 RequestCallbackActionButton,PaymentReceiptActionButton)35 PaymentReceiptActionButton) 36 36 from waeup.kofa.applicants.pdf import PDFApplicationSlip 37 37 from waeup.uniben.applicants.interfaces import ( -
main/waeup.uniben/trunk/src/waeup/uniben/applicants/payment.py
r8263 r8421 22 22 from zope.component.interfaces import IFactory 23 23 from zope.interface import implementedBy 24 from waeup.kofa. payments importOnlinePayment24 from waeup.kofa.applicants.payment import ApplicantOnlinePayment 25 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 26 from waeup.uniben.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 class CustomApplicantOnlinePayment(OnlinePayment): 29 """This is an online payment. 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): 29 """This is a custom online payment for applicants. 30 31 Since this class inherits from ApplicantOnlinePayment, it automatically 32 implements the interfaces of the parent class which means 33 all viewlets and views meant for StudentOnlinePayment 34 can also be accessed in the customized system. 30 35 """ 31 36 grok.implements(ICustomApplicantOnlinePayment)
Note: See TracChangeset for help on using the changeset viewer.