[13355] | 1 | ## $Id: interfaces.py 15787 2019-11-09 15:51:43Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | |
---|
| 19 | import zope.i18nmessageid |
---|
| 20 | from zope import schema |
---|
| 21 | from zc.sourcefactory.basic import BasicSourceFactory |
---|
| 22 | from waeup.kofa.interfaces import (SimpleKofaVocabulary, |
---|
| 23 | ISessionConfiguration, academic_sessions_vocab) |
---|
| 24 | |
---|
[14035] | 25 | _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.coewarri') |
---|
[13355] | 26 | |
---|
| 27 | class ICustomSessionConfiguration(ISessionConfiguration): |
---|
| 28 | """A session configuration object. |
---|
| 29 | """ |
---|
| 30 | |
---|
[14456] | 31 | clearance_fee = schema.Float( |
---|
| 32 | title = _(u'Acceptance Fee (not used)'), |
---|
[13355] | 33 | default = 0.0, |
---|
| 34 | required = False, |
---|
| 35 | ) |
---|
| 36 | |
---|
[14455] | 37 | clearance_fee_1 = schema.Float( |
---|
[14456] | 38 | title = _(u'Acceptance Fee NCE'), |
---|
[13355] | 39 | default = 0.0, |
---|
| 40 | required = False, |
---|
| 41 | ) |
---|
| 42 | |
---|
[14455] | 43 | clearance_fee_2 = schema.Float( |
---|
[14456] | 44 | title = _(u'Acceptance Fee Degree'), |
---|
[14455] | 45 | default = 0.0, |
---|
| 46 | required = False, |
---|
| 47 | ) |
---|
| 48 | |
---|
[14589] | 49 | clearance_fee_3 = schema.Float( |
---|
[15787] | 50 | title = _(u'Acceptance Fee NCE Part-Time'), |
---|
[14589] | 51 | default = 0.0, |
---|
| 52 | required = False, |
---|
| 53 | ) |
---|
| 54 | |
---|
[13355] | 55 | booking_fee = schema.Float( |
---|
[14456] | 56 | title = _(u'Bed Booking Fee'), |
---|
[13355] | 57 | default = 0.0, |
---|
| 58 | required = False, |
---|
| 59 | ) |
---|
| 60 | |
---|
| 61 | maint_fee = schema.Float( |
---|
[14456] | 62 | title = _(u'Rent (fallback)'), |
---|
[13355] | 63 | default = 0.0, |
---|
| 64 | required = False, |
---|
| 65 | ) |
---|
| 66 | |
---|
[14456] | 67 | late_registration_fee = schema.Float( |
---|
| 68 | title = _(u'Late Course Reg. Fee'), |
---|
| 69 | default = 0.0, |
---|
| 70 | required = False, |
---|
| 71 | ) |
---|
| 72 | |
---|
[13355] | 73 | transcript_fee = schema.Float( |
---|
| 74 | title = _(u'Transcript Fee'), |
---|
| 75 | default = 0.0, |
---|
| 76 | required = False, |
---|
| 77 | ) |
---|
| 78 | |
---|
[14456] | 79 | transfer_fee = schema.Float( |
---|
| 80 | title = _(u'Transfer Fee'), |
---|
| 81 | default = 0.0, |
---|
| 82 | required = False, |
---|
| 83 | ) |
---|
[13355] | 84 | |
---|
| 85 | def getSessionString(): |
---|
| 86 | """Returns the session string from the vocabulary. |
---|
| 87 | """ |
---|
| 88 | |
---|
| 89 | |
---|
| 90 | class ICustomSessionConfigurationAdd(ICustomSessionConfiguration): |
---|
| 91 | """A session configuration object in add mode. |
---|
| 92 | """ |
---|
| 93 | |
---|
| 94 | academic_session = schema.Choice( |
---|
| 95 | title = _(u'Academic Session'), |
---|
| 96 | source = academic_sessions_vocab, |
---|
| 97 | default = None, |
---|
| 98 | required = True, |
---|
| 99 | readonly = False, |
---|
| 100 | ) |
---|
| 101 | |
---|
| 102 | ICustomSessionConfigurationAdd[ |
---|
| 103 | 'academic_session'].order = ICustomSessionConfiguration[ |
---|
[10765] | 104 | 'academic_session'].order |
---|