Changeset 14456 for main/kofacustom.coewarri/trunk
- Timestamp:
- 25 Jan 2017, 09:39:03 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/interfaces.py
r14455 r14456 25 25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.coewarri') 26 26 27 # It's recommended to replicate all fields from the base package here.28 27 class ICustomSessionConfiguration(ISessionConfiguration): 29 28 """A session configuration object. 30 29 """ 31 30 32 # Base fees, do not remove. 33 34 school_fee_base = schema.Float( 35 title = _(u'School Fee (ignored)'), 31 clearance_fee = schema.Float( 32 title = _(u'Acceptance Fee (not used)'), 36 33 default = 0.0, 37 34 required = False, … … 39 36 40 37 clearance_fee_1 = schema.Float( 41 title = _(u'Acceptance Fee NCE Prog.'),38 title = _(u'Acceptance Fee NCE'), 42 39 default = 0.0, 43 40 required = False, … … 45 42 46 43 clearance_fee_2 = schema.Float( 47 title = _(u'Acceptance Fee Degree Prog.'),44 title = _(u'Acceptance Fee Degree'), 48 45 default = 0.0, 49 46 required = False, … … 51 48 52 49 booking_fee = schema.Float( 53 title = _(u'B ooking Fee'),50 title = _(u'Bed Booking Fee'), 54 51 default = 0.0, 55 52 required = False, … … 57 54 58 55 maint_fee = schema.Float( 59 title = _(u'Maintenance Fee (ignored)'), 56 title = _(u'Rent (fallback)'), 57 default = 0.0, 58 required = False, 59 ) 60 61 late_registration_fee = schema.Float( 62 title = _(u'Late Course Reg. Fee'), 60 63 default = 0.0, 61 64 required = False, … … 68 71 ) 69 72 70 # Additional fees in custom package add here 71 73 transfer_fee = schema.Float( 74 title = _(u'Transfer Fee'), 75 default = 0.0, 76 required = False, 77 ) 72 78 73 79 def getSessionString():
Note: See TracChangeset for help on using the changeset viewer.