Changeset 17698 for main/kofacustom.unidel/trunk/src/kofacustom
- Timestamp:
- 9 Feb 2024, 07:34:32 (9 months ago)
- Location:
- main/kofacustom.unidel/trunk/src/kofacustom/unidel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interfaces.py
r17599 r17698 67 67 ) 68 68 69 med_reg_fee = schema.Float(70 title = _(u'Medical Registration Fee'),71 default = 0.0,72 required = False,73 )74 75 69 interswitch_enabled = schema.Bool( 76 70 title = _(u'Interswitch Collegepay integration enabled'), … … 108 102 ) 109 103 104 med_reg_fee = schema.Float( 105 title = _(u'Medical Registration Fee'), 106 default = 0.0, 107 required = False, 108 ) 109 110 teaching_practice_fee = schema.Float( 111 title = _(u'Teaching Practice Fee'), 112 default = 0.0, 113 required = False, 114 ) 115 110 116 def getSessionString(): 111 117 """Returns the session string from the vocabulary. -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py
r17682 r17698 134 134 elif self.context.p_category == 'med_reg': 135 135 xmldict['institution_acct'] = '1011265606' 136 elif self.context.p_category == 'teaching_practice': 137 xmldict['institution_acct'] = '1005399320' 138 xmldict['institution_bank_id'] = '8' 136 139 self.pay_item_id = 'Default_Payable_MX47126' # must be provided by Interswitch 137 140 # Already now it becomes an Interswitch payment. We set the net amount -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py
r17598 r17698 38 38 #'combi': 'Combi Payment', 39 39 'med_reg':'Medical Registration Fee', 40 'teaching_practice':'Teaching Practice Fee', 40 41 } 41 42 … … 46 47 'hostel_maintenance': 'Hostel Fee', 47 48 'med_reg':'Medical Registration Fee', 49 'teaching_practice':'Teaching Practice Fee', 48 50 } 49 51
Note: See TracChangeset for help on using the changeset viewer.