Ignore:
Timestamp:
22 Nov 2023, 21:52:19 (10 months ago)
Author:
Henrik Bettermann
Message:

IJMB foreign students pay the same.

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

Legend:

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

    r16721 r17647  
    3434    form_fields = grok.AutoFields(ICustomSessionConfiguration)
    3535
     36class CustomCertificatePage(CertificatePage):
     37    """Index page for certificates.
     38    """
     39    form_fields = grok.AutoFields(ICertificate).omit(
     40        'custom_float_1',
     41        'custom_float_2',
     42        #'school_fee_1',
     43        #'school_fee_2',
     44        'school_fee_3',
     45        'school_fee_4',
     46        'custom_textline_1',
     47        'custom_textline_2',
     48        )
     49
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/utils.py

    r17645 r17647  
    131131                if student.faccode == 'NCE':
    132132                    amount += 14600
    133                 elif student.faccode not in ('PRE', 'JUPEB', 'DELSU'):
     133                elif student.faccode not in ('PRE', 'JUPEB', 'DELSU', 'IJMB'):
    134134                    amount += 40000
    135135        elif category == 'clearance':
Note: See TracChangeset for help on using the changeset viewer.