Changeset 18046


Ignore:
Timestamp:
15 Mar 2025, 23:59:29 (4 hours ago)
Author:
Henrik Bettermann
Message:

Add SIWES payment category.

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

Legend:

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

    r17933 r18046  
    144144        )
    145145
     146    siwes_fee = schema.Float(
     147        title = _(u'SIWES Fee'),
     148        default = 0.0,
     149        required = False,
     150        )
    146151
    147152    def getSessionString():
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py

    r18026 r18046  
    154154            xmldict['institution_acct'] = '1005399320'
    155155            xmldict['institution_bank_id'] = '8'
     156        elif self.context.p_category == 'siwes':
     157            xmldict['institution_acct'] = '2000092025'
     158            xmldict['institution_bank_id'] = '8'
    156159        elif self.context.p_category.startswith('transcript'):
    157160            xmldict['institution_acct'] = '0010494552'
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py

    r17952 r18046  
    4444        'ijmb_exam':'IJMB Examination Fees',
    4545        'union': 'Student Union Due',
     46        'siwes': 'SIWES',
    4647        }
    4748
     
    5859        'transcript_local': 'Transcript Fee Local Copy',
    5960        'transcript_inter': 'Transcript Fee International Copy',
     61        'siwes': 'SIWES',
    6062        #'union': 'Student Union Due',
    6163        }
Note: See TracChangeset for help on using the changeset viewer.