Changeset 17874 for main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Timestamp:
- 7 Aug 2024, 20:36:14 (5 months ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r17777 r17874 146 146 ) 147 147 148 nin = schema.Int( 149 title = _(u'National Identification Number'), 150 required = False, 151 ) 152 148 153 #jamb_reg_number = schema.TextLine( 149 154 # title = _(u'JAMB Registration Number'), … … 1608 1613 # required = True, 1609 1614 # ) 1615 1616 nin = schema.Int( 1617 title = _(u'National Identification Number'), 1618 required = True, 1619 ) 1610 1620 1611 1621 date_of_birth = FormattedDate( … … 1685 1695 ICustomUGApplicantEdit['date_of_birth'].order = ICustomUGApplicant[ 1686 1696 'date_of_birth'].order 1697 ICustomUGApplicantEdit['nin'].order = ICustomUGApplicant[ 1698 'nin'].order 1687 1699 ICustomUGApplicantEdit['course1'].order = ICustomUGApplicant[ 1688 1700 'course1'].order -
main/waeup.aaue/trunk/src/waeup/aaue/applicants/tests/test_browser.py
r17632 r17874 85 85 self.browser.getControl(name="form.sex").value = ['m'] 86 86 self.browser.getControl(name="form.lastname").value = 'Merkel' 87 self.browser.getControl(name="form.nin").value = '1234567' 87 88 self.browser.getControl(name="form.fst_sit_fname").value = 'name' 88 89 self.browser.getControl(name="form.fst_sit_no").value = 'no'
Note: See TracChangeset for help on using the changeset viewer.