Changeset 10529 for main/waeup.fceokene/trunk/src/waeup
- Timestamp:
- 23 Aug 2013, 10:38:21 (11 years ago)
- Location:
- main/waeup.fceokene/trunk/src/waeup/fceokene
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/browser.py
r9481 r10529 23 23 from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget 24 24 from zope.formlib.textwidgets import BytesDisplayWidget 25 from waeup.kofa.applicants.browser import (ApplicantDisplayFormPage,26 ApplicantManageFormPage, ApplicantEditFormPage)27 25 from waeup.kofa.applicants.viewlets import ( 28 26 PaymentReceiptActionButton, PDFActionButton) 29 27 from waeup.kofa.applicants.pdf import PDFApplicationSlip 28 29 from kofacustom.nigeria.applicants.browser import ( 30 NigeriaExportPDFPaymentSlipPage, NigeriaApplicantManageFormPage, 31 NigeriaApplicantDisplayFormPage, NigeriaApplicantEditFormPage) 32 30 33 from kofacustom.nigeria.applicants.interfaces import ( 31 34 UG_OMIT_DISPLAY_FIELDS, … … 42 45 ) 43 46 44 class CustomApplicantDisplayFormPage( ApplicantDisplayFormPage):47 class CustomApplicantDisplayFormPage(NigeriaApplicantDisplayFormPage): 45 48 """A display view for applicant data. 46 49 """ … … 94 97 return form_fields 95 98 96 class CustomApplicantManageFormPage(ApplicantManageFormPage): 99 class CustomExportPDFPaymentSlipPage(NigeriaExportPDFPaymentSlipPage): 100 """Deliver a PDF slip of the context. 101 """ 102 103 note = ''' 104 105 106 The total authorized amount includes an Interswitch transaction charge of 150 Nairas. 107 ''' 108 109 class CustomApplicantManageFormPage(NigeriaApplicantManageFormPage): 97 110 """A full edit view for applicant data. 98 111 """ … … 112 125 return form_fields 113 126 114 class CustomApplicantEditFormPage( ApplicantEditFormPage):127 class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage): 115 128 """An applicant-centered edit view for applicant data. 116 129 """ -
main/waeup.fceokene/trunk/src/waeup/fceokene/interswitch/tests.py
r10528 r10529 352 352 ' item_amt="35000" bank_id="117" acct_num="1012445289" />' 353 353 in self.browser.contents) 354 import pdb; pdb.set_trace()355 354 356 355 -
main/waeup.fceokene/trunk/src/waeup/fceokene/students/browser.py
r10019 r10529 84 84 form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') 85 85 86 note = ''' 87 88 89 The total authorized amount includes an Interswitch transaction charge of 150 Nairas. 90 ''' 91 86 92 class CustomStartClearancePage(StartClearancePage): 87 93
Note: See TracChangeset for help on using the changeset viewer.