Changeset 2162 for WAeUP_SRP/trunk
- Timestamp:
- 24 Aug 2007, 20:43:30 (17 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/profiles/default/layouts/application.xml
r2142 r2162 659 659 </row> 660 660 <row> 661 <cell name="application_date" ncols="2"/> 662 </row> 663 <row> 661 664 <cell name="status" ncols="2"/> 662 </row>663 <row>664 <cell name="application_date" ncols="2"/>665 665 </row> 666 666 <row> -
WAeUP_SRP/trunk/profiles/default/vocabularies/exam_types.xml
r1449 r2162 13 13 <item key="tc_ii" msgid="">TC II</item> 14 14 <item key="rsa" msgid="">RSA</item> 15 <item key="nabtec" msgid="">NABTE C</item>15 <item key="nabtec" msgid="">NABTEB</item> 16 16 <item key="neco" msgid="">NECO</item> 17 17 <item key="ace" msgid="">ACE</item> -
WAeUP_SRP/trunk/skins/waeup_student/apply_pume.py
r2161 r2162 62 62 if not object['passport']: 63 63 object['passport'] = '' 64 if 'submitted' in object['status']:64 if object['status'] and 'submitted' in object['status']: 65 65 submitted = True 66 66 if not create and (pin != object['pin'] and not context.isSectionOfficer()): … … 137 137 logger.info('%s/%s modified and submitted application record' % (member,reg_no)) 138 138 elif object['status'] == 'reset': 139 data['status'] = 'resubmitted on %s' % DateTime.DateTime().strftime('%A, %B %d, %Y') 140 logger.info('%s/%s modified and resubmitted application record' % (member,reg_no)) 141 object['status'] = data['status'] 139 data['status'] = 'resubmitted on %s' % DateTime.DateTime().strftime('%A, %B %d, %Y') 140 logger.info('%s/%s modified and resubmitted application record' % (member,reg_no)) 141 object['status'] = data['status'] 142 142 context.applicants_catalog.modifyRecord(**data) 143 143 144 144 res,psm_dummy,ds = lt.renderLayout(layout_id= 'application', 145 145 schema_id= 'application',
Note: See TracChangeset for help on using the changeset viewer.