Ignore:
Timestamp:
20 Nov 2022, 11:22:41 (22 months ago)
Author:
Henrik Bettermann
Message:

New acceptance fee.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/utils.py

    r17162 r17166  
    126126                return _('Study course data are incomplete.'), None
    127127            amount = academic_session.clearance_fee
    128             if amount:
    129                 if not local(student) and student.faccode != 'PRE' \
    130                     and not student.is_jupeb:
    131                     amount += 10000
    132                 if student.faccode == 'PRE':
    133                     amount -= 5000
     128            if amount and student.faccode != 'PRE' and not student.is_jupeb:
     129                if nlocal(student):
     130                    amount *= 2.0
     131                else:
     132                    amount *= 2.4
    134133        elif category == 'bed_allocation':
    135134            p_item = self.getAccommodationDetails(student)['bt']
Note: See TracChangeset for help on using the changeset viewer.