Changeset 13413 for main/waeup.aaue
- Timestamp:
- 8 Nov 2015, 07:20:29 (9 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r13410 r13413 77 77 maint_fee = schema.Float( 78 78 title = _(u'Maintenance Fee'), 79 default = 0.0,80 required = True,81 )82 83 gown_fee = schema.Float(84 title = _(u'Gown Fee'),85 79 default = 0.0, 86 80 required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r13410 r13413 116 116 elif category == 'transcript': 117 117 amount = academic_session.transcript_fee 118 elif category == 'gown':119 amount = academic_session.gown_fee120 118 elif category == 'bed_allocation': 121 119 amount = academic_session.booking_fee -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r13412 r13413 36 36 'hostel_maintenance': 'Hostel Maintenance Fee', 37 37 'application': 'Application Fee', 38 'gown': 'Gown Hire Fee',39 38 'bed_allocation': 'Bed Allocation Fee', 40 39 'transfer': 'Transfer Fee', … … 57 56 'hostel_maintenance': 'Hostel Maintenance Fee', 58 57 'application': 'Application Fee', 59 #'gown': 'Gown Hire Fee',60 58 #'bed_allocation': 'Bed Allocation Fee', 61 59 #'transfer': 'Transfer Fee',
Note: See TracChangeset for help on using the changeset viewer.