Changeset 17894


Ignore:
Timestamp:
17 Aug 2024, 12:43:09 (5 weeks ago)
Author:
Henrik Bettermann
Message:

Add transcript payment categories.

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

Legend:

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

    r17841 r17894  
    5757    transcript_fee = schema.Float(
    5858        title = _(u'Transcript Fee'),
     59        default = 0.0,
     60        required = False,
     61        )
     62
     63    transcript_student_fee = schema.Float(
     64        title = _(u'Transcript Fee Students Copy'),
     65        default = 0.0,
     66        required = False,
     67        )
     68
     69    transcript_local_fee = schema.Float(
     70        title = _(u'Transcript Fee Local Copy'),
     71        default = 0.0,
     72        required = False,
     73        )
     74
     75    transcript_inter_fee = schema.Float(
     76        title = _(u'Transcript Fee International Copy'),
    5977        default = 0.0,
    6078        required = False,
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py

    r17891 r17894  
    145145            xmldict['institution_acct'] = '1005399320'
    146146            xmldict['institution_bank_id'] = '8'
    147         elif self.context.p_category == 'transcript':
     147        elif self.context.p_category.startswith('transcript'):
    148148            xmldict['institution_acct'] = '0010494552'
    149149            xmldict['institution_bank_id'] = '129'
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py

    r17891 r17894  
    3535        #'app_balance': 'Application Fee Balance',
    3636        'transcript': 'Transcript Fee',
     37        'transcript_student': 'Transcript Fee Students Copy',
     38        'transcript_local': 'Transcript Fee Local Copy',
     39        'transcript_inter': 'Transcript Fee International Copy',
    3740        #'late_registration': 'Late Course Registration Fee',
    3841        #'combi': 'Combi Payment',
     
    5053        'teaching_practice':'Teaching Practice Fee',
    5154        'ijmb_exam':'IJMB Examination Fees',
    52         'transcript': 'Transcript Fee',
     55        #'transcript': 'Transcript Fee',
     56        'transcript_student': 'Transcript Fee Students Copy',
     57        'transcript_local': 'Transcript Fee Local Copy',
     58        'transcript_inter': 'Transcript Fee International Copy',
    5359        }
    5460
Note: See TracChangeset for help on using the changeset viewer.