- Timestamp:
- 27 Mar 2023, 13:22:52 (20 months ago)
- File:
-
- 1 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,
Note: See TracChangeset for help on using the changeset viewer.