Ignore:
Timestamp:
30 Jul 2025, 09:52:58 (36 hours ago)
Author:
Henrik Bettermann
Message:

New fees.

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

Legend:

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

    r18046 r18143  
    150150        )
    151151
     152    trcn_nce_fee = schema.Float(
     153        title = _(u'NCE TRCN Induction License Fee'),
     154        default = 0.0,
     155        required = False,
     156        )
     157
     158    trcn_degree_fee = schema.Float(
     159        title = _(u'Degree TRCN Induction License Fee'),
     160        default = 0.0,
     161        required = False,
     162        )
     163
    152164    def getSessionString():
    153165        """Returns the session string from the vocabulary.
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py

    r18106 r18143  
    161161            xmldict['institution_bank_id'] = '129'
    162162            provider_amt = 2000.0
     163        elif self.context.p_category.startswith('trcn'):
     164            xmldict['institution_acct'] = '1010957205'
     165            xmldict['institution_bank_id'] = '117'
     166            provider_amt = 500.0
    163167        elif self.context.p_category.startswith('union'):
    164168            xmldict['institution_acct'] = '1011438901'
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py

    r18046 r18143  
    4545        'union': 'Student Union Due',
    4646        'siwes': 'SIWES',
     47        'trcn_nce': 'NCE TRCN Induction / License Fees',
     48        'trcn_degree': 'DEGREE TRCN Induction / License Fees',
    4749        }
    4850
     
    6163        'siwes': 'SIWES',
    6264        #'union': 'Student Union Due',
     65        'trcn_nce': 'NCE TRCN Induction / License Fees',
     66        'trcn_degree': 'DEGREE TRCN Induction / License Fees',
    6367        }
    6468
Note: See TracChangeset for help on using the changeset viewer.