Changeset 15071 for main/kofacustom.edopoly
- Timestamp:
- 30 Jun 2018, 06:18:27 (6 years ago)
- Location:
- main/kofacustom.edopoly/trunk/src/kofacustom/edopoly
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/interfaces.py
r15018 r15071 93 93 ) 94 94 95 certificate_confirm_fee = schema.Float( 96 title = _(u'Certificate Confirmation Fee'), 97 default = 0.0, 98 required = False, 99 ) 100 101 final_clearance_fee = schema.Float( 102 title = _(u'Final Clearance Fee'), 103 default = 0.0, 104 required = False, 105 ) 106 95 107 def getSessionString(): 96 108 """Returns the session string from the vocabulary. -
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/utils.py
r15064 r15071 205 205 elif category == 'certificate': 206 206 amount = academic_session.certificate_fee 207 elif category == 'certificate_confirm': 208 amount = academic_session.certificate_confirm_fee 209 elif category == 'final_clearance': 210 amount = academic_session.final_clearance_fee 211 elif category == 'late_registration': 212 amount = academic_session.late_registration_fee 207 213 if amount in (0.0, None): 208 214 return _('Amount could not be determined.'), None -
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/utils/utils.py
r15069 r15071 36 36 'transcript': 'Transcript Fee', 37 37 'certificate': 'Certificate Fee', 38 'certificate_confirm': 'Certificate Confirmation Fee', 39 'late_registration': 'Late Course Registration Fee', 40 'final_clearance': 'Final Clearance Fee', 38 41 } 39 42 … … 43 46 'schoolfee': 'Tuition and Exams Fee', 44 47 'ict_entre': 'ICT and Entrepreneur Fee', 48 'certificate_confirm': 'Certificate Confirmation Fee', 49 'final_clearance': 'Final Clearance Fee', 45 50 } 46 51 … … 55 60 #'transcript': 'Transcript Fee', 56 61 'certificate': 'Certificate Fee', 62 'certificate_confirm': 'Certificate Confirmation Fee', 63 'late_registration': 'Late Course Registration Fee', 64 'final_clearance': 'Final Clearance Fee', 57 65 } 58 66
Note: See TracChangeset for help on using the changeset viewer.