Changeset 16626 for main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
- Timestamp:
- 19 Sep 2021, 16:20:32 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/export.py
r16621 r16626 47 47 course_admitted = getattr(context, 'course_admitted', None) 48 48 if course_admitted is not None: 49 value = course_admitted.__parent__.__parent__.code 49 try: 50 value = course_admitted.__parent__.__parent__.code 51 except AttributeError: 52 value = 'N/A' 50 53 return super( 51 54 CustomApplicantExporter, self).mangle_value(
Note: See TracChangeset for help on using the changeset viewer.