Changeset 18045 for main/waeup.aaue


Ignore:
Timestamp:
15 Mar 2025, 23:47:09 (24 hours ago)
Author:
Henrik Bettermann
Message:

Add hostel balance 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

    r17619 r18045  
    309309        )
    310310
     311    hostel_balance_fee = schema.Float(
     312        title = _(u'Hostel Balance'),
     313        default = 0.0,
     314        required = True,
     315        )
     316
    311317    lab_1_fee = schema.Float(
    312318        title = _(u'Faculty Laboratory Due (CHM102/PHY103/CSC101)'),
  • main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py

    r18033 r18045  
    8080
    8181    'hostel_maintenance': ('1006406795', '123'),
     82    'hostel_balance':     ('1006406795', '123'),
    8283    'bed_allocation':     ('1012327077', '123'),
    8384    'late_registration':  ('5210006575', '51'),
  • main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py

    r18042 r18045  
    4545        'clearance_incl': 'Acceptance Fee Plus',
    4646        'hostel_maintenance': 'Hostel Accommodation Fee',
     47        'hostel_balance': 'Hostel Balance',
    4748        'application': 'Application Fee',
    4849        'app_balance': 'Application Fee Balance',
     
    9697        'clearance_incl': 'Acceptance Fee Plus',
    9798        'hostel_maintenance': 'Hostel Accommodation Fee',
     99        'hostel_balance': 'Hostel Balance',
    98100        #'application': 'Application Fee',
    99101        'bed_allocation': 'Bed Allocation Fee',
     
    217219        'clearance': 'Acceptance Fee',
    218220        'hostel_maintenance': 'Hostel Maintenance Fee',
     221        'hostel_balance': 'Hostel Balance',
    219222        'late_registration': 'Late Course Registration Fee',
    220223        #'welfare': 'Student Welfare Assurance Fee',
Note: See TracChangeset for help on using the changeset viewer.