Changeset 16516


Ignore:
Timestamp:
27 Jun 2021, 09:33:08 (3 years ago)
Author:
Henrik Bettermann
Message:

Disable schoolfee payments of returning students only.

Location:
main/waeup.uniben/trunk/src/waeup/uniben
Files:
2 edited

Legend:

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

    r16445 r16516  
    170170        if category == 'schoolfee':
    171171            if 'sf_all' in academic_session.payment_disabled:
     172                return True
     173            if student.state == RETURNING and \
     174                'sf_return' in academic_session.payment_disabled:
    172175                return True
    173176            if student.current_mode == 'found' and \
  • main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py

    r16404 r16516  
    135135        'sf_sw':     'School Fee - Sandwich',
    136136        'sf_dp':     'School Fee - Diploma',
     137        'sf_return': 'School Fee - Returning',
    137138        'maint_all': 'Accomm. Fee - All',
    138139        'cl_all':    'Accept. Fee- All',
Note: See TracChangeset for help on using the changeset viewer.