source: main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/utils.py @ 15429

Last change on this file since 15429 was 15364, checked in by Henrik Bettermann, 6 years ago

ICT fee depends on entry session.

  • Property svn:keywords set to Id
File size: 13.3 KB
Line 
1## $Id: utils.py 15364 2019-03-24 06:16:36Z 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##
18from time import time
19import grok
20from zope.component import createObject, getUtility
21from waeup.kofa.interfaces import (IKofaUtils,
22    CLEARED, RETURNING, PAID, REGISTERED, VALIDATED)
23from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
24from kofacustom.edopoly.interfaces import MessageFactory as _
25
26class CustomStudentsUtils(NigeriaStudentsUtils):
27    """A collection of customized methods.
28
29    """
30
31    # prefix
32    STUDENT_ID_PREFIX = u'U'
33
34    def warnCreditsOOR(self, studylevel, course=None):
35        """No maximum credits.
36        """
37        return
38
39    def GPABoundaries(self, faccode=None, depcode=None,
40                            certcode=None, student=None):
41        if student and student.current_mode.startswith('dp'):
42                return ((1, 'IRNS / NER / NYV'),
43                        (2, 'Pass'),
44                        (2.5, 'Lower Credit'),
45                        (3, 'Upper Credit'),
46                        (3.5, 'Distinction'))
47        elif student:
48            return ((1, 'FRNS / NER / NYV'),
49                    (1.5, 'Pass'),
50                    (2.4, '3rd Class Honours'),
51                    (3.5, '2nd Class Honours Lower Division'),
52                    (4.5, '2nd Class Honours Upper Division'),
53                    (5, '1st Class Honours'))
54        # Session Results Presentations depend on certificate
55        results = None
56        if certcode:
57            cat = queryUtility(ICatalog, name='certificates_catalog')
58            results = list(
59                cat.searchResults(code=(certcode, certcode)))
60        if results and results[0].study_mode.startswith('dp'):
61            return ((1, 'IRNS / NER / NYV'),
62                    (2, 'Pass'),
63                    (2.5, 'Lower Credit'),
64                    (3, 'Upper Credit'),
65                    (3.5, 'Distinction'))
66        else:
67            return ((1, 'FRNS / NER / NYV'),
68                    (1.5, 'Pass'),
69                    (2.4, '3rd Class Honours'),
70                    (3.5, '2nd Class Honours Lower Division'),
71                    (4.5, '2nd Class Honours Upper Division'),
72                    (5, '1st Class Honours'))
73
74    def getClassFromCGPA(self, gpa, student):
75        gpa_boundaries = self.GPABoundaries(student=student)
76        if gpa < gpa_boundaries[0][0]:
77            return 0, gpa_boundaries[0][1]
78        if gpa < gpa_boundaries[1][0]:
79            return 1, gpa_boundaries[1][1]
80        if gpa < gpa_boundaries[2][0]:
81            return 2, gpa_boundaries[2][1]
82        if gpa < gpa_boundaries[3][0]:
83            return 3, gpa_boundaries[3][1]
84        if gpa < gpa_boundaries[4][0]:
85            return 4, gpa_boundaries[4][1]
86        if gpa <= gpa_boundaries[5][0]:
87            return 5, gpa_boundaries[5][1]
88        return 'N/A'
89
90    def _requiredPaymentsMade(self, student, session):
91        # SIWESS fee requirement removed on 18/01/2019
92        req_payments = ('ict_entre', 'logbook_combo')
93        req_payments_titles = 'ICT and Logbook'
94        # All ND and HND part time do not pay for LOGBOOK
95        if student.current_mode.endswith('_pt'):
96            req_payments = ('ict_entre',)
97            req_payments_titles = 'ICT'
98        # HND1 and HND2 full time do not pay for LOGBOOK
99        elif student.current_mode == 'hnd_ft' and student.state in (
100            CLEARED, RETURNING):
101            req_payments = ('ict_entre',)
102            req_payments_titles = 'ICT'
103        # ND2 FULL TIME do not pay LOGBOOK
104        elif student.current_mode == 'nd_ft' and student.state == RETURNING:
105            req_payments = ('ict_entre',)
106            req_payments_titles = 'ICT'
107        num = 0
108        if len(student['payments']):
109            for ticket in student['payments'].values():
110                if ticket.p_state == 'paid' and \
111                    ticket.p_category in req_payments and \
112                    ticket.p_session == session:
113                    num += 1
114            if num == len(req_payments):
115                return True, None
116        return False, req_payments_titles
117
118    def setPaymentDetails(self, category, student,
119            previous_session=None, previous_level=None):
120        """Create a payment ticket and set the payment data of a
121        student for the payment category specified.
122        """
123        p_item = u''
124        amount = 0.0
125        if previous_session:
126            if previous_session < student['studycourse'].entry_session:
127                return _('The previous session must not fall below '
128                         'your entry session.'), None
129            if category == 'schoolfee':
130                # School fee is always paid for the following session
131                if previous_session > student['studycourse'].current_session:
132                    return _('This is not a previous session.'), None
133            else:
134                if previous_session > student['studycourse'].current_session - 1:
135                    return _('This is not a previous session.'), None
136            p_session = previous_session
137            p_level = previous_level
138            p_current = False
139        else:
140            p_session = student['studycourse'].current_session
141            p_level = student['studycourse'].current_level
142            p_current = True
143        # The following three fees are part of the school fee which must be
144        # paid before tuition fee. They are paid for next session.
145        if category in ('ict_entre', 'logbook_combo', 'siwess_combo') and \
146            student.state == RETURNING and not previous_session:
147            p_session, p_level = self.getReturningData(student)
148        academic_session = self._getSessionConfiguration(p_session)
149        if academic_session == None:
150            return _(u'Session configuration object is not available.'), None
151        # Determine fee.
152        if category == 'schoolfee':
153            try:
154                certificate = student['studycourse'].certificate
155                p_item = certificate.code
156            except (AttributeError, TypeError):
157                return _('Study course data are incomplete.'), None
158            if previous_session:
159                amount = getattr(certificate, 'school_fee_1', 0.0)
160            else:
161                if student.state == CLEARED:
162                    amount = getattr(certificate, 'school_fee_1', 0.0)
163                elif student.state == RETURNING:
164                    amount = getattr(certificate, 'school_fee_1', 0.0)
165                    # In case of returning school fee payment the
166                    # payment session and level contain the values of
167                    # the session the student has paid for. Payment
168                    # session is always next session.
169                    p_session, p_level = self.getReturningData(student)
170                    academic_session = self._getSessionConfiguration(p_session)
171                    if academic_session == None:
172                        return _(
173                            u'Session configuration object is not available.'
174                            ), None
175                elif student.is_postgrad and student.state == PAID:
176                    # Returning postgraduate students also pay for the
177                    # next session but their level always remains the
178                    # same.
179                    amount = getattr(certificate, 'school_fee_1', 0.0)
180                    p_session += 1
181                    academic_session = self._getSessionConfiguration(p_session)
182                    if academic_session == None:
183                        return _(
184                            u'Session configuration object is not available.'
185                            ), None
186            rpm, rpt = self._requiredPaymentsMade(student, p_session)
187            if not rpm:
188                return 'Pay %s fee(s) first.' % rpt, None
189        elif category == 'clearance':
190            try:
191                p_item = student['studycourse'].certificate.code
192            except (AttributeError, TypeError):
193                return _('Study course data are incomplete.'), None
194            amount = academic_session.clearance_fee
195        elif category == 'bed_allocation':
196            p_item = self.getAccommodationDetails(student)['bt']
197            amount = academic_session.booking_fee
198        elif category == 'hostel_maintenance':
199            amount = 0.0
200            bedticket = student['accommodation'].get(
201                str(student.current_session), None)
202            if bedticket is not None and bedticket.bed is not None:
203                p_item = bedticket.bed_coordinates
204                if bedticket.bed.__parent__.maint_fee > 0:
205                    amount = bedticket.bed.__parent__.maint_fee
206                else:
207                    # fallback
208                    amount = academic_session.maint_fee
209            else:
210                return _(u'No bed allocated.'), None
211        elif category == 'ict_entre':
212            amount = 11000.0
213            if student['studycourse'].entry_session < 2018:
214                amount = 16000.0
215        else:
216            fee_name = category + '_fee'
217            amount = getattr(academic_session, fee_name, 0.0)
218        if amount in (0.0, None):
219            return _('Amount could not be determined.'), None
220        if self.samePaymentMade(student, category, p_item, p_session):
221            return _('This type of payment has already been made.'), None
222        if self._isPaymentDisabled(p_session, category, student):
223            return _('This category of payments has been disabled.'), None
224        payment = createObject(u'waeup.StudentOnlinePayment')
225        timestamp = ("%d" % int(time()*10000))[1:]
226        payment.p_id = "p%s" % timestamp
227        payment.p_category = category
228        payment.p_item = p_item
229        payment.p_session = p_session
230        payment.p_level = p_level
231        payment.p_current = p_current
232        payment.amount_auth = amount
233        return None, payment
234
235    def constructMatricNumber(self, student):
236        faccode = student.faccode
237        #depcode = student.depcode
238        #certcode = student.certcode
239        year = unicode(student.entry_session)[2:]
240        if not student.state in (PAID, ) or not student.is_fresh:
241            return _('Matriculation number cannot be set.'), None
242
243        # SASND1809001
244        if student.current_mode == 'nd_ft':
245            next_integer = grok.getSite()['configuration'].next_matric_integer
246            if next_integer == 0:
247                return _('Matriculation number cannot be set.'), None
248            return None, "%s/ND/%s/%05d" % (faccode, year, next_integer)
249
250        # SASNH1809001
251        if student.current_mode == 'hnd_ft':
252            next_integer = grok.getSite()['configuration'].next_matric_integer_2
253            if next_integer == 0:
254                return _('Matriculation number cannot be set.'), None
255            return None, "%s/HD/%s/%05d" % (faccode, year, next_integer)
256
257        # SASPT1809001
258        if student.current_mode in ('nd_pt', 'hnd_pt'):
259            next_integer = grok.getSite()['configuration'].next_matric_integer_3
260            if next_integer == 0:
261                return _('Matriculation number cannot be set.'), None
262            return None, "%s/PT/%s/%05d" % (faccode, year, next_integer)
263
264        return _('Matriculation number cannot be set.'), None
265
266
267    def increaseMatricInteger(self, student):
268        """Increase counter for matric numbers.
269        """
270        if student.current_mode == 'nd_ft':
271            grok.getSite()['configuration'].next_matric_integer += 1
272            return
273        elif student.current_mode == 'hnd_ft':
274            grok.getSite()['configuration'].next_matric_integer_2 += 1
275            return
276        elif student.current_mode in ('nd_pt', 'hnd_pt'):
277            grok.getSite()['configuration'].next_matric_integer_3 += 1
278            return
279        return
280
281    def getAccommodationDetails(self, student):
282        """Determine the accommodation data of a student.
283        """
284        d = {}
285        d['error'] = u''
286        hostels = grok.getSite()['hostels']
287        d['booking_session'] = hostels.accommodation_session
288        d['allowed_states'] = hostels.accommodation_states
289        d['startdate'] = hostels.startdate
290        d['enddate'] = hostels.enddate
291        d['expired'] = hostels.expired
292        # Determine bed type
293        studycourse = student['studycourse']
294        certificate = getattr(studycourse,'certificate',None)
295        entry_session = studycourse.entry_session
296        current_level = studycourse.current_level
297        if None in (entry_session, current_level, certificate):
298            return d
299        bt = 'all'
300        if student.sex == 'f':
301            sex = 'female'
302        else:
303            sex = 'male'
304        special_handling = 'regular'
305        d['bt'] = u'%s_%s_%s' % (special_handling,sex,bt)
306        return d
Note: See TracBrowser for help on using the repository browser.