source: main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py @ 14220

Last change on this file since 14220 was 14117, checked in by Henrik Bettermann, 8 years ago

Implement different course registration deadlines and fees (untested!)

  • Property svn:keywords set to Id
File size: 5.3 KB
RevLine 
[13357]1## $Id: interfaces.py 14117 2016-08-23 09:41:32Z 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
19import zope.i18nmessageid
20from zope import schema
21from zc.sourcefactory.basic import BasicSourceFactory
22from waeup.kofa.interfaces import (SimpleKofaVocabulary,
23    ISessionConfiguration, academic_sessions_vocab)
24
25_ = MessageFactory = zope.i18nmessageid.MessageFactory('waeup.aaue')
26
27# It's recommended to replicate all fields from the base package here.
28class ICustomSessionConfiguration(ISessionConfiguration):
29    """A session configuration object.
30    """
31
32    clearance_fee = schema.Float(
33        title = _(u'Regular Acceptance Fee'),
34        default = 0.0,
35        required = True,
36        )
37
38    clearance_fee_fp = schema.Float(
39        title = _(u'FP Acceptance Fee'),
40        default = 0.0,
41        required = True,
42        )
43
[13678]44    clearance_fee_pg = schema.Float(
45        title = _(u'FT PG Acceptance Fee'),
[13377]46        default = 0.0,
47        required = True,
48        )
49
[13678]50    clearance_fee_ug_pt = schema.Float(
51        title = _(u'PT UG Acceptance Fee'),
[13377]52        default = 0.0,
53        required = True,
54        )
55
[13678]56    clearance_fee_pg_pt = schema.Float(
57        title = _(u'PT PG Acceptance Fee'),
[13525]58        default = 0.0,
59        required = True,
60        )
61
[13678]62    clearance_fee_med = schema.Float(
63        title = _(u'Medical Acceptance Fee'),
64        default = 0.0,
65        required = True,
66        )
67
[13357]68    booking_fee = schema.Float(
69        title = _(u'Booking Fee'),
70        default = 0.0,
71        required = True,
72        )
73
74    transcript_fee = schema.Float(
75        title = _(u'Transcript Fee'),
76        default = 0.0,
77        required = True,
78        )
79
80    # Additional fees in custom package
81
82    maint_fee = schema.Float(
83        title = _(u'Maintenance Fee'),
84        default = 0.0,
85        required = True,
86        )
87
88    transfer_fee = schema.Float(
89        title = _(u'Transfer Fee'),
90        default = 0.0,
91        required = True,
92        )
93
94    penalty_ug = schema.Float(
95        title = _(u'UG Penalty Fee'),
96        default = 0.0,
97        required = True,
98        )
99
100    penalty_pg = schema.Float(
101        title = _(u'PG Penalty Fee'),
102        default = 0.0,
103        required = True,
104        )
105
106    late_registration_fee = schema.Float(
107        title = _(u'Late Course Reg. Fee'),
108        default = 0.0,
109        required = True,
110        )
111
[14117]112    late_pg_registration_fee = schema.Float(
113        title = _(u'Late PG Course Reg. Fee'),
114        default = 0.0,
115        required = True,
116        )
117
[13374]118    welfare_fee = schema.Float(
119        title = _(u'AAU Student Welfare Assurance Fee'),
120        default = 0.0,
121        required = True,
122        )
123
124    union_fee = schema.Float(
[13463]125        title = _(u'Student Union Due'),
[13374]126        default = 0.0,
127        required = True,
128        )
129
130    lapel_fee = schema.Float(
131        title = _(u'AAU Lapel/File Fee'),
132        default = 0.0,
133        required = True,
134        )
135
136    matric_gown_fee = schema.Float(
137        title = _(u'Matriculation Gown Fee'),
138        default = 0.0,
139        required = True,
140        )
141
142    concessional_fee = schema.Float(
143        title = _(u'Concessional Fee'),
144        default = 0.0,
145        required = True,
146        )
147
[13357]148    coursereg_deadline = schema.Datetime(
[14117]149        title = _(u'FT Course Reg. Deadline'),
[13357]150        required = False,
151        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
152        )
153
[14117]154    coursereg_deadline_pg = schema.Datetime(
155        title = _(u'PG Course Reg. Deadline'),
156        required = False,
157        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
158        )
[13357]159
[14117]160    coursereg_deadline_pt = schema.Datetime(
161        title = _(u'PT Course Reg. Deadline'),
162        required = False,
163        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
164        )
165
166    coursereg_deadline_dp = schema.Datetime(
167        title = _(u'DP Course Reg. Deadline'),
168        required = False,
169        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
170        )
171
172    coursereg_deadline_found = schema.Datetime(
173        title = _(u'FOUND Course Reg. Deadline'),
174        required = False,
175        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
176        )
177
178
[13357]179    def getSessionString():
180        """Returns the session string from the vocabulary.
181        """
182
183
184class ICustomSessionConfigurationAdd(ICustomSessionConfiguration):
185    """A session configuration object in add mode.
186    """
187
188    academic_session = schema.Choice(
189        title = _(u'Academic Session'),
190        source = academic_sessions_vocab,
191        default = None,
192        required = True,
193        readonly = False,
194        )
195
196ICustomSessionConfigurationAdd[
197    'academic_session'].order =  ICustomSessionConfiguration[
[6923]198    'academic_session'].order
Note: See TracBrowser for help on using the repository browser.