Changeset 15789 for main/kofacustom.iuokada/trunk/src
- Timestamp:
- 9 Nov 2019, 16:24:23 (5 years ago)
- Location:
- main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/interfaces.py
r15773 r15789 55 55 ) 56 56 57 transcript_fee = schema.Float( 58 title = _(u'Transcript Fee'), 57 transcript_local_fee = schema.Float( 58 title = _(u'Transcript Fee Local Students'), 59 default = 0.0, 60 required = False, 61 ) 62 63 transcript_overseas_fee = schema.Float( 64 title = _(u'Transcript Fee Oversea Students'), 59 65 default = 0.0, 60 66 required = False, … … 114 120 ) 115 121 116 municipal_fee = schema.Float( 117 title = _(u'Municipal Fee'), 122 municipal_fresh_fee = schema.Float( 123 title = _(u'Municipal Fee Fresh Students'), 124 default = 0.0, 125 required = False, 126 ) 127 128 municipal_returning_fee = schema.Float( 129 title = _(u'Municipal Fee Returning Students'), 118 130 default = 0.0, 119 131 required = False, -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py
r15783 r15789 38 38 'application': 'Application Fee', 39 39 'app_balance': 'Application Fee Balance', 40 'transcript': 'Transcript Fee', 40 'transcript_local': 'Transcript Fee Local', 41 'transcript_overseas': 'Transcript Fee Oversea', 41 42 'late_registration': 'Late Registration Fee', 42 43 'science': 'Science Bench Fee', 43 44 'clinical': 'Clinical Fee (Medical Students)', 44 45 'develop': 'Development Fee', 45 'municipal': 'Municipal Fee', 46 'municipal_fresh': 'Municipal Fee Fresh)', 47 'municipal_returning': 'Municipal Fee Returning)', 46 48 'alumni': 'Alumni Fee', 47 49 'conv': 'Convocation Fee', … … 71 73 #'application': 'Application Fee', 72 74 #'app_balance': 'Application Fee Balance', 73 'transcript': 'Transcript Fee', 75 'transcript_local': 'Transcript Fee (Local Students)', 76 'transcript_overseas': 'Transcript Fee (Oversea Students)', 74 77 'late_registration': 'Late Registration Fee', 75 78 'science': 'Science Bench Fee', 76 79 'clinical': 'Clinical Fee (Medical Students)', 77 80 'develop': 'Development Fee', 78 'municipal': 'Municipal Fee', 81 'municipal_fresh': 'Municipal Fee (Fresh Students)', 82 'municipal_returning': 'Municipal Fee (Returning Students)', 79 83 'alumni': 'Alumni Fee', 80 84 'conv': 'Convocation Fee', … … 101 105 'clinical': 'Clinical Fee (Medical Students)', 102 106 'develop': 'Development Fee', 103 'municipal': 'Municipal Fee', 107 'municipal_fresh': 'Municipal Fee (Fresh Students)', 108 'municipal_returning': 'Municipal Fee (Returning Students)', 104 109 'alumni': 'Alumni Fee', 105 110 'conv': 'Convocation Fee', … … 122 127 'clinical': 'Clinical Fee (Medical Students)', 123 128 'develop': 'Development Fee', 124 'municipal': 'Municipal Fee', 129 'municipal_fresh': 'Municipal Fee (Fresh Students)', 130 'municipal_returning': 'Municipal Fee (Returning Students)', 125 131 'alumni': 'Alumni Fee', 126 132 'conv': 'Convocation Fee',
Note: See TracChangeset for help on using the changeset viewer.