Ignore:
Timestamp:
3 Nov 2019, 08:39:29 (5 years ago)
Author:
Henrik Bettermann
Message:

Add ICT Fee.

Location:
main/waeup.aaue/trunk/src/waeup/aaue
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py

    r15742 r15745  
    260260        )
    261261
     262    ict_fee = schema.Float(
     263        title = _(u'ICT Fee'),
     264        default = 0.0,
     265        required = True,
     266        )
     267
    262268    coursereg_deadline = schema.Datetime(
    263269        title = _(u'FT Course Reg. Deadline'),
  • main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py

    r15742 r15745  
    455455                    and student.state == CLEARED:
    456456                    amount += gateway_net_amt(academic_session.id_card_fee)
    457                 if student.entry_session >= 2019:
    458                     amount += gateway_net_amt(academic_session.ict_fee)
    459457            # Add session specific penalty fees
    460458            if student.is_postgrad:
     
    472470            elif student.depcode == 'VAT':
    473471                amount = 5000.0
     472            if student.entry_session >= 2019:
     473                amount += gateway_net_amt(academic_session.ict_fee)
    474474        elif not student.is_postgrad:
    475475            fee_name = category + '_fee'
  • main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py

    r15723 r15745  
    6565        'gst_registration_2': 'Registration Fee GST222',
    6666        'ent_registration_1': 'Registration Fee ENT201',
    67         'fac_dep': 'Faculty and Departmental Dues',
     67        'fac_dep': 'Faculty and Departmental Dues (incl. ICT Fee)',
    6868        'restitution': 'Restitution Fee',
    6969        }
     
    9797        'gst_registration_2': 'Registration Fee GST222',
    9898        'ent_registration_1': 'Registration Fee ENT201',
    99         'fac_dep': 'Faculty and Departmental Dues',
     99        'fac_dep': 'Faculty and Departmental Dues (incl. ICT Fee)',
    100100        'restitution': 'Restitution Fee',
    101101        }
Note: See TracChangeset for help on using the changeset viewer.