Changeset 2436


Ignore:
Timestamp:
25 Oct 2007, 20:31:49 (17 years ago)
Author:
Henrik Bettermann
Message:

copy student names into application object

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/base/WAeUPTool.py

    r2435 r2436  
    12851285        f2t = self.field2types_student
    12861286        d = {}
    1287         d['jamb_sex']  = 'M'
    1288         if mapping.get('sex'):
    1289             d['jamb_sex']  = 'F'
    12901287        transition = mapping.get('reg_transition','admit')
    12911288        if transition not in ('admit','return'):
     
    12981295            for field in f2t[pt]['fields']:
    12991296                d[field] = mapping.get(field,'')
     1297               
     1298            if pt == "StudentApplication":   
     1299                d['jamb_sex']  = 'M'
     1300                if mapping.get('sex'):
     1301                    d['jamb_sex']  = 'F'
     1302                d['jamb_firstname'] = mapping.get('firstname',None)
     1303                d['jamb_middlename'] = mapping.get('middlename',None)
     1304                d['jamb_lastname'] = mapping.get('lastname',None)
     1305
    13001306            # if pt == "StudyCourse":
    13011307            #     for von,zu in (('entry_mode','current_mode'),
     
    14731479                    return em
    14741480                if mode == "create":
    1475                     required_keys = [layout.getIdUnprefixed(id) 
     1481                    required_keys = [layout.getIdUnprefixed(id)
    14761482                                     for id,widget in layout.objectItems()
    14771483                                     if widget.is_required]
     
    15051511                else:
    15061512                    item = temp_item
    1507             if error_string: 
     1513            if error_string:
    15081514                item['Error'] = error_string
    15091515                not_imported.append(format_error % item)
Note: See TracChangeset for help on using the changeset viewer.