Changeset 17874


Ignore:
Timestamp:
7 Aug 2024, 20:36:14 (6 weeks ago)
Author:
Henrik Bettermann
Message:

Add NIN.

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  
    146146        )
    147147
     148    nin = schema.Int(
     149        title = _(u'National Identification Number'),
     150        required = False,
     151        )
     152
    148153    #jamb_reg_number = schema.TextLine(
    149154    #    title = _(u'JAMB Registration Number'),
     
    16081613    #    required = True,
    16091614    #    )
     1615
     1616    nin = schema.Int(
     1617        title = _(u'National Identification Number'),
     1618        required = True,
     1619        )
    16101620
    16111621    date_of_birth = FormattedDate(
     
    16851695ICustomUGApplicantEdit['date_of_birth'].order = ICustomUGApplicant[
    16861696    'date_of_birth'].order
     1697ICustomUGApplicantEdit['nin'].order = ICustomUGApplicant[
     1698    'nin'].order
    16871699ICustomUGApplicantEdit['course1'].order = ICustomUGApplicant[
    16881700    'course1'].order
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/tests/test_browser.py

    r17632 r17874  
    8585        self.browser.getControl(name="form.sex").value = ['m']
    8686        self.browser.getControl(name="form.lastname").value = 'Merkel'
     87         self.browser.getControl(name="form.nin").value = '1234567'
    8788        self.browser.getControl(name="form.fst_sit_fname").value = 'name'
    8889        self.browser.getControl(name="form.fst_sit_no").value = 'no'
Note: See TracChangeset for help on using the changeset viewer.