Ignore:
Timestamp:
30 Dec 2006, 16:58:14 (18 years ago)
Author:
joachim
Message:

added jamb_reg_no checking + phone_nr
made schoolfee_code a string field in certificate.xml

Location:
WAeUP_SRP/trunk/skins/waeup_student
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_student/createStudentFT.py

    r1151 r1158  
    4444                                                        student_brain.Lastname)
    4545                                )
    46 return "Student MatricelNo %s and %s created" % (matric_no,sid)
     46return "Student MatricelNo %s and %s Jamb %s created" % (matric_no,
     47                                                         sid,
     48                                                         student_brain.Entryregno)
    4749   
  • WAeUP_SRP/trunk/skins/waeup_student/set_access_data.py

    r1154 r1158  
    4242elif psm == 'valid':
    4343    pass
    44     #jamb_reg_no = ds.get('jamb_reg_no')
    45     #r = context.returning_import(matric_no = matric_no)
    46     #if 0 and r and r[0].Entryregno != jamb_reg_no or not r:
    47     #    psm = "Your Jamb Registration Nr is wrong"
    48     #    return context.set_access_data_form(rendered = res,
    49     #                             psm = psm,
    50     #                             firstlayout = True,
    51     #                             lastlayout = True,
    52     #                             ds = ds,
    53     #                             )
     44    jamb_reg_no = ds.get('jamb_reg_no')
     45    r = context.returning_import(matric_no = matric_no)
     46    if r and r[0].Entryregno != jamb_reg_no or not r:
     47        psm = "Your Jamb Registration Nr is wrong"
     48        return context.set_access_data_form(rendered = res,
     49                                 psm = psm,
     50                                 firstlayout = True,
     51                                 lastlayout = True,
     52                                 ds = ds,
     53                                 )
    5454## from Products.zdb import set_trace;set_trace()
    5555password = REQUEST.get('widget__password')
Note: See TracChangeset for help on using the changeset viewer.