Changeset 15656
- Timestamp:
- 9 Oct 2019, 20:09:19 (5 years ago)
- Location:
- main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/interswitch/tests.py
r15563 r15656 50 50 def setUp(self): 51 51 super(InterswitchTestsStudents, self).setUp() 52 self.app['configuration']['2004'].interswitch_enabled = True 52 53 53 54 def test_interswitch_form(self): -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/tests/test_export.py
r15563 r15656 59 59 'marit_stat,matric_number,middlename,nationality,' 60 60 'next_kin_address,next_kin_name,next_kin_phone,next_kin_relation,' 61 'nysc_lga,nysc_location,nysc_year,officer_comment, '61 'nysc_lga,nysc_location,nysc_year,officer_comment,parents_email,' 62 62 'perm_address,personal_updated,phone,' 63 63 'physical_clearance_date,provisionally_cleared,reg_number,' … … 68 68 '"[(\'printing_craft_practice\', \'A1\')]",my clr code,1981-02-04#,,,' 69 69 'anna@sample.com,,,,,,,,,,,,,Anna,,,,,,"[(\'printing_craft_practice\', \'A1\')]"' 70 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,, '70 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,,,' 71 71 '"Studentroad 21\nLagos 123456\n",,+234-123-12345#,,,123,,,,,' 72 72 '"[(\'printing_craft_practice\', \'A1\')]",,f,A111111,0,,,created,' -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/utils.py
r15654 r15656 19 19 from zope.component import createObject, getUtility 20 20 from waeup.kofa.interfaces import (IKofaUtils, 21 CLEARED, RETURNING, PAID, REGISTERED, VALIDATED)21 ADMITTED, CLEARED, RETURNING, PAID, REGISTERED, VALIDATED) 22 22 from kofacustom.nigeria.students.utils import NigeriaStudentsUtils 23 23 from kofacustom.iuokada.interfaces import MessageFactory as _ … … 36 36 # Maximum size of upload files in kB 37 37 MAX_KB = 500 38 39 #: A tuple containing the names of registration states in which changing of 40 #: passport pictures is allowed. 41 PORTRAIT_CHANGE_STATES = (ADMITTED,) 38 42 39 43 def setPaymentDetails(self, category, student,
Note: See TracChangeset for help on using the changeset viewer.