Ignore:
Timestamp:
8 Jul 2024, 16:05:10 (2 months ago)
Author:
Henrik Bettermann
Message:

Improve NYSCExporter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.uniben/trunk/src/waeup/uniben/students/export.py

    r17834 r17835  
    210210        'nysc_date_of_graduation',
    211211        'nysc_updated',
     212        'nysc_processed',
    212213        ) + year_range_tuple
    213214    title = u'NYSC Indication'
     
    216217        students = list()
    217218        for student in x:
    218             if student.nysc == True:
     219            if student.nysc == True and student.nysc_processed == False:
    219220                students.append(student)
    220221        return students
Note: See TracChangeset for help on using the changeset viewer.