Changeset 10469 for main/waeup.uniben/trunk/src/waeup
- Timestamp:
- 7 Aug 2013, 11:42:54 (11 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/interfaces.py
r9435 r10469 62 62 ) 63 63 64 transcript_fee = schema.Float( 65 title = _(u'Transcript Fee'), 66 default = 0.0, 67 required = False, 68 ) 69 64 70 # Additional fees in custom package 65 71 -
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r9971 r10469 88 88 if category == 'transfer': 89 89 amount = academic_session.transfer_fee 90 elif category == 'transcript': 91 amount = academic_session.transcript_fee 90 92 elif category == 'gown': 91 93 amount = academic_session.gown_fee -
main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py
r10441 r10469 59 59 'transfer': 'Transfer Fee', 60 60 'gown': 'Gown Hire Fee', 61 'application': 'Application Fee' 61 'application': 'Application Fee', 62 'transcript': 'Transcript Fee', 62 63 } 63 64 … … 69 70 'tempmaint_3': 'Clinical Hostel Maintenance Fee', 70 71 'gown': 'Gown Hire Fee', 71 'application': 'Application Fee' 72 'application': 'Application Fee', 73 'transcript': 'Transcript Fee', 72 74 } 73 75
Note: See TracChangeset for help on using the changeset viewer.