source: main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/interfaces.py @ 16399

Last change on this file since 16399 was 16370, checked in by Henrik Bettermann, 4 years ago

Implement late school fee penalty fee payments.

  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1## $Id: interfaces.py 16370 2021-01-13 09:20:28Z 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('kofacustom.coewarri')
26
27class ICustomSessionConfiguration(ISessionConfiguration):
28    """A session configuration object.
29    """
30
31    clearance_fee = schema.Float(
32        title = _(u'Acceptance Fee (not used)'),
33        default = 0.0,
34        required = False,
35        )
36
37    clearance_fee_1 = schema.Float(
38        title = _(u'Acceptance Fee NCE'),
39        default = 0.0,
40        required = False,
41        )
42
43    clearance_fee_2 = schema.Float(
44        title = _(u'Acceptance Fee Degree'),
45        default = 0.0,
46        required = False,
47        )
48
49    clearance_fee_3 = schema.Float(
50        title = _(u'Acceptance Fee NCE Part-Time'),
51        default = 0.0,
52        required = False,
53        )
54
55    booking_fee = schema.Float(
56        title = _(u'Bed Booking Fee'),
57        default = 0.0,
58        required = False,
59        )
60
61    maint_fee = schema.Float(
62        title = _(u'Rent (fallback)'),
63        default = 0.0,
64        required = False,
65        )
66
67    late_registration_fee = schema.Float(
68        title = _(u'Late Course Reg. Fee'),
69        default = 0.0,
70        required = False,
71        )
72
73    lsfp_penalty_fee = schema.Float(
74        title = _(u'NCE Late School Fee Payment Penalty Fee'),
75        description = u'Enter NCE penalty fee. DELSU penalty fee will be twice as high.',
76        default = 0.0,
77        required = False,
78        )
79
80    transcript_fee = schema.Float(
81        title = _(u'Transcript Fee'),
82        default = 0.0,
83        required = False,
84        )
85
86    transfer_fee = schema.Float(
87        title = _(u'Transfer Fee'),
88        default = 0.0,
89        required = False,
90        )
91
92    def getSessionString():
93        """Returns the session string from the vocabulary.
94        """
95
96
97class ICustomSessionConfigurationAdd(ICustomSessionConfiguration):
98    """A session configuration object in add mode.
99    """
100
101    academic_session = schema.Choice(
102        title = _(u'Academic Session'),
103        source = academic_sessions_vocab,
104        default = None,
105        required = True,
106        readonly = False,
107        )
108
109ICustomSessionConfigurationAdd[
110    'academic_session'].order =  ICustomSessionConfiguration[
111    'academic_session'].order
Note: See TracBrowser for help on using the repository browser.