Changeset 17894 for main/kofacustom.unidel/trunk
- Timestamp:
- 17 Aug 2024, 12:43:09 (3 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
r17841 r17894 57 57 transcript_fee = schema.Float( 58 58 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'), 59 77 default = 0.0, 60 78 required = False, -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/interswitch/browser.py
r17891 r17894 145 145 xmldict['institution_acct'] = '1005399320' 146 146 xmldict['institution_bank_id'] = '8' 147 elif self.context.p_category == 'transcript':147 elif self.context.p_category.startswith('transcript'): 148 148 xmldict['institution_acct'] = '0010494552' 149 149 xmldict['institution_bank_id'] = '129' -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py
r17891 r17894 35 35 #'app_balance': 'Application Fee Balance', 36 36 'transcript': 'Transcript Fee', 37 'transcript_student': 'Transcript Fee Students Copy', 38 'transcript_local': 'Transcript Fee Local Copy', 39 'transcript_inter': 'Transcript Fee International Copy', 37 40 #'late_registration': 'Late Course Registration Fee', 38 41 #'combi': 'Combi Payment', … … 50 53 'teaching_practice':'Teaching Practice Fee', 51 54 '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', 53 59 } 54 60
Note: See TracChangeset for help on using the changeset viewer.