- Timestamp:
- 27 Mar 2023, 13:22:52 (20 months ago)
- Location:
- main/kofacustom.edocons/trunk/src/kofacustom/edocons
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/interfaces.py
r17332 r17364 38 38 39 39 booking_fee = schema.Float( 40 title = _(u'Bed Booking Fee '),40 title = _(u'Bed Booking Fee (n/a)'), 41 41 default = 0.0, 42 42 required = False, … … 44 44 45 45 maint_fee = schema.Float( 46 title = _(u'Rent (fallback)'), 46 title = _(u'Rent (n/a)'), 47 default = 0.0, 48 required = False, 49 ) 50 51 hostel_fee = schema.Float( 52 title = _(u'Hostel Fee (Total)'), 53 default = 0.0, 54 required = False, 55 ) 56 57 hostel_fee_1 = schema.Float( 58 title = _(u'Hostel Fee (1st Instalment)'), 59 default = 0.0, 60 required = False, 61 ) 62 63 hostel_fee_2 = schema.Float( 64 title = _(u'Hostel Fee (2nd Instalment)'), 47 65 default = 0.0, 48 66 required = False, … … 63 81 transfer_fee = schema.Float( 64 82 title = _(u'Transfer Fee'), 65 default = 0.0,66 required = False,67 )68 69 hostel_fee = schema.Float(70 title = _(u'Hostel Fee'),71 83 default = 0.0, 72 84 required = False, -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/utils/utils.py
r17332 r17364 60 60 'secondinstal': 'School Fee (34% - 2nd instalment)', 61 61 'clearance': 'Acceptance Fee', 62 'hostel':'Hostel Fee', 62 'hostel':'Hostel Fee (Total)', 63 'hostel_1':'Hostel Fee (1st instalment)', 64 'hostel_2':'Hostel Fee (2nd instalment)', 63 65 #'bed_allocation': 'Bed Allocation Fee', 64 66 #'hostel_maintenance': 'Hostel Maintenance Fee', … … 77 79 'schoolfee_1': 'School Fee (66% - 1st instalment)', 78 80 'secondinstal': 'School Fee (34% - 2nd instalment)', 79 'hostel':'Hostel Fee', 81 'hostel':'Hostel Fee (Total)', 82 'hostel_1':'Hostel Fee (1st instalment)', 83 'hostel_2':'Hostel Fee (2nd instalment)', 80 84 'resit': 'Resit Fee', 81 85 }
Note: See TracChangeset for help on using the changeset viewer.