Changeset 13630 for main/kofacustom.wdu/trunk/src/kofacustom
- Timestamp:
- 17 Jan 2016, 08:47:32 (9 years ago)
- Location:
- main/kofacustom.wdu/trunk/src/kofacustom/wdu/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/payments.py
r11940 r13630 23 23 from zope.interface import implementedBy 24 24 from waeup.kofa.students.interfaces import IStudentNavigation 25 from waeup.kofa.students.payments import (26 StudentOnlinePayment, StudentOnlinePaymentFactory)27 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 from kofacustom.nigeria.students.payments import ( 27 NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory) 28 28 from kofacustom.wdu.students.interfaces import ICustomStudentOnlinePayment 29 29 30 class CustomStudentOnlinePayment( StudentOnlinePayment):30 class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment): 31 31 """This is a custom online payment for students. 32 32 … … 50 50 CustomStudentOnlinePayment, omit=['display_item']) 51 51 52 class CustomStudentOnlinePaymentFactory( StudentOnlinePaymentFactory):52 class CustomStudentOnlinePaymentFactory(NigeriaStudentOnlinePaymentFactory): 53 53 """A factory for student online payments. 54 54 """ -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/tests/test_export.py
r13116 r13630 49 49 'clr_code,date_of_birth,def_adm,disabled,email,emp2_end,' 50 50 'emp2_position,emp2_reason,emp2_start,emp_end,emp_position,' 51 'emp_reason,emp_start,employer,employer2,firstname,former_matric,' 51 'emp_reason,emp_start,employer,employer2,' 52 'financial_clearance_date,financially_cleared_by,' 53 'firstname,former_matric,' 52 54 'fst_sit_date,fst_sit_fname,fst_sit_no,fst_sit_results,' 53 55 'fst_sit_type,hq2_degree,hq2_disc,hq2_matric_no,hq2_school,' … … 63 65 'current_level,current_session\r\nmy adm code,,,,' 64 66 '"[(\'printing_craft_practice\', \'A1\')]",my clr code,1981-02-04#,,,' 65 'anna@sample.com,,,,,,,,,,, Anna,,,,,"[(\'printing_craft_practice\', \'A1\')]"'67 'anna@sample.com,,,,,,,,,,,,,Anna,,,,,"[(\'printing_craft_practice\', \'A1\')]"' 66 68 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,,' 67 69 '"Studentroad 21\nLagos 123456\n",,+234-123-12345#,,123,,,,,'
Note: See TracChangeset for help on using the changeset viewer.