Ignore:
Timestamp:
4 Apr 2023, 00:44:58 (18 months ago)
Author:
Henrik Bettermann
Message:

Configure acceptance fee for diploma students.

Location:
main/kofacustom.unidel/trunk/src/kofacustom/unidel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py

    r17347 r17373  
    103103                xmldict['institution_bank_id'] = '117'
    104104                provider_amt = 4000.0
     105                tech_fee = 0.0
     106            if student.current_mode.startswith('dp'):
     107                xmldict['institution_acct'] = '1011431799'
     108                xmldict['institution_bank_id'] = '117'
     109                provider_amt = 250.0
    105110                tech_fee = 0.0
    106111        elif self.context.p_category == 'hostel_maintenance':
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/utils.py

    r17347 r17373  
    137137            if student.faccode == 'JUPEB':
    138138                amount = 25000.0
     139            if student.current_mode.startswith('dp'):
     140                amount = 20000.0
    139141        elif category == 'bed_allocation':
    140142            acco_details = self.getAccommodationDetails(student)
Note: See TracChangeset for help on using the changeset viewer.