Changeset 3002


Ignore:
Timestamp:
9 Jan 2008, 12:55:20 (17 years ago)
Author:
Henrik Bettermann
Message:

don't overwrite jamb_sex

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/base/WAeUPTool.py

    r2999 r3002  
    845845        if brain.sex not in (True,False):
    846846            logger.info('sex of %s not available' % (brain.reg_no))
    847             return           
     847            return
    848848        student_id = self.generateStudentId('?')
    849849        students_folder.invokeFactory('Student', student_id)
     
    17621762
    17631763            if pt == "StudentApplication":
    1764                 d['jamb_sex']  = 'M'
    1765                 if mapping.get('sex'):
    1766                     d['jamb_sex']  = 'F'
     1764                #d['jamb_sex']  = 'M'
     1765                #if mapping.get('sex'):
     1766                #    d['jamb_sex']  = 'F'
    17671767                d['jamb_firstname'] = mapping.get('firstname',None)
    17681768                d['jamb_middlename'] = mapping.get('middlename',None)
     
    18461846            break
    18471847        for pt in f2t.keys():
    1848             if pt == "StudentApplication":
    1849                 d['jamb_sex']  = 'M'
    1850                 if mapping.get('sex'):
    1851                     d['jamb_sex']  = 'F'
     1848            #if pt == "StudentApplication":
     1849            #    d['jamb_sex']  = 'M'
     1850            #    if mapping.get('sex'):
     1851            #        d['jamb_sex']  = 'F'
    18521852            intersect = set(f2t[pt]['fields']).intersection(set(editable_keys))
    18531853            if intersect and pt not in ('StudentStudyLevel',):
Note: See TracChangeset for help on using the changeset viewer.