Changeset 14457
- Timestamp:
- 25 Jan 2017, 09:55:44 (8 years ago)
- Location:
- main/kofacustom.skeleton/trunk/src/kofacustom/skeleton
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/interfaces.py
r13892 r14457 25 25 _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.skeleton') 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. … … 32 31 # Base fees, do not remove. 33 32 34 school_fee_base = schema.Float(35 title = _(u'School Fee (ignored)'),36 default = 0.0,37 required = False,38 )39 40 33 clearance_fee = schema.Float( 41 title = _(u' Clearance Fee (ignored)'),34 title = _(u'Acceptance Fee'), 42 35 default = 0.0, 43 36 required = False, … … 45 38 46 39 booking_fee = schema.Float( 47 title = _(u'B ooking Fee'),40 title = _(u'Bed Booking Fee'), 48 41 default = 0.0, 49 42 required = False, … … 51 44 52 45 maint_fee = schema.Float( 53 title = _(u'Maintenance Fee (ignored)'), 46 title = _(u'Rent (fallback)'), 47 default = 0.0, 48 required = False, 49 ) 50 51 late_registration_fee = schema.Float( 52 title = _(u'Late Course Reg. Fee'), 54 53 default = 0.0, 55 54 required = False, … … 61 60 required = False, 62 61 ) 62 63 transfer_fee = schema.Float( 64 title = _(u'Transfer Fee'), 65 default = 0.0, 66 required = False, 67 ) 68 63 69 64 70 # Additional fees in custom package add here -
main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/students/tests/test_export.py
r14276 r14457 4 4 from waeup.kofa.interfaces import ICSVExporter 5 5 from waeup.kofa.schoolgrades import ResultEntry 6 from waeup.kofa.students.tests.test_batching import StudentImportExportSetup 6 from waeup.kofa.students.tests.test_batching import ( 7 StudentImportExportSetup, curr_year) 7 8 from kofacustom.skeleton.utils.utils import CustomKofaUtils 8 9 from kofacustom.skeleton.students.export import ( … … 107 108 'r_pay_reference,thirdparty_amt,student_id,state,' 108 109 'current_session\r\n' 109 '666,12.12, 2012-04-01 13:12:01#,,schoolfee,1,my-id,p-item,'110 '100, 2012,paid,2012-04-01 14:12:01#,,12.12,'110 '666,12.12,%s-04-01 13:12:01#,,schoolfee,1,my-id,p-item,' 111 '100,%s,paid,%s-04-01 14:12:01#,,12.12,' 111 112 '789,r-code,interswatch,,,,A111111,created,2012\r\n', 112 result113 % (curr_year-6, curr_year-6, curr_year-6), result 113 114 ) 114 115 return
Note: See TracChangeset for help on using the changeset viewer.