source: main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/utils.py @ 16700

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

Abraham: I was told there was
serious demonstration (protest) by the students due to the increment of
returning student school fee, as such, the staffs of the school could not
gain entrance to the campus.
The ICT Director just called me this evening, informing me the school
management have decided to revert to the previous school fee amount
(before the supposed addition of Microsoft Academy) due to the unrest.

  • Property svn:keywords set to Id
File size: 18.0 KB
RevLine 
[10765]1## $Id: utils.py 16430 2021-03-25 06:06:53Z 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##
[15222]18import grok
[10765]19from time import time
20from zope.component import createObject, getUtility
21from waeup.kofa.interfaces import (IKofaUtils,
[14919]22    ADMITTED, CLEARED, RETURNING, PAID, REGISTERED, VALIDATED)
[10765]23from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
[14716]24from kofacustom.dspg.interfaces import MessageFactory as _
[10765]25
[16430]26MICROSOFT_FEE = 0.0
[14875]27
28def local(student):
29    lga = getattr(student, 'lga')
30    if lga and lga.startswith('delta'):
31        return True
32    return False
33
[10765]34class CustomStudentsUtils(NigeriaStudentsUtils):
35    """A collection of customized methods.
36    """
37
[14720]38    # prefix
[14860]39    STUDENT_ID_PREFIX = u'P'
40
[16309]41    def _dep_sug_gns_paymentMade(self, student, session):
[15360]42        if student.state == RETURNING:
43            session += 1
[16309]44        dep_sug = False
45        gns = False
[14938]46        if len(student['payments']):
47            for ticket in student['payments'].values():
48                if ticket.p_state == 'paid' and \
49                    ticket.p_category == 'dep_sug' and \
50                    ticket.p_session == session:
[16309]51                    dep_sug = True
52                if ticket.p_state == 'paid' and \
53                    ticket.p_category.startswith('gns') and \
54                    ticket.p_session == session:
55                    gns = True
[16338]56                if dep_sug and gns:
[14938]57                    return True
58        return False
59
[15288]60    def _lsfp_penalty_paymentMade(self, student, session):
61        if student.current_mode not in ('hnd_ft', 'nd_ft'):
62            return True
63        if len(student['payments']):
64            for ticket in student['payments'].values():
65                if ticket.p_state == 'paid' and \
66                    ticket.p_category == 'lsfp_penalty' and \
67                    ticket.p_session == session:
68                    return True
69        return False
70
[15221]71    def getAccommodationDetails(self, student):
72        """Determine the accommodation data of a student.
73        """
74        d = {}
75        d['error'] = u''
76        hostels = grok.getSite()['hostels']
77        d['booking_session'] = hostels.accommodation_session
78        d['allowed_states'] = hostels.accommodation_states
79        d['startdate'] = hostels.startdate
80        d['enddate'] = hostels.enddate
81        d['expired'] = hostels.expired
82        # Determine bed type
83        bt = 'all'
84        if student.sex == 'f':
85            sex = 'female'
86        else:
87            sex = 'male'
88        special_handling = 'regular'
89        d['bt'] = u'%s_%s_%s' % (special_handling,sex,bt)
90        return d
91
[15743]92    def getBedCoordinates(self, bedticket):
93        """Translated coordinates:
94
95        Hall Name, Block Letter, Room Number, Bed Letter =
96        Hall Name, M/F + Room Number-100, Bed Letter
97
98        Requirements: Gender must be part of bed_coordinates and all hostels
99        have only one block with only one floor
100        """
101        ### ToDo
102        return bedticket.bed_coordinates
103
[14963]104    def getReturningData(self, student):
105        """ This method defines what happens after school fee payment
106        of returning students depending on the student's senate verdict.
107        """
108        prev_level = student['studycourse'].current_level
109        cur_verdict = student['studycourse'].current_verdict
110        if cur_verdict in ('A','B','L','M','N','Z',):
111            # Successful student
112            new_level = divmod(int(prev_level),100)[0]*100 + 100
113        elif cur_verdict == 'C':
114            # Student on probation
115            new_level = int(prev_level) + 10
116        else:
117            # Student is somehow in an undefined state.
118            # Level has to be set manually.
119            new_level = prev_level
120        new_session = student['studycourse'].current_session + 1
121        return new_session, new_level
122
[14860]123    def setPaymentDetails(self, category, student,
[15681]124            previous_session=None, previous_level=None, combi=[]):
[14860]125        """Create a payment ticket and set the payment data of a
126        student for the payment category specified.
127        """
128        p_item = u''
129        amount = 0.0
130        if previous_session:
131            if previous_session < student['studycourse'].entry_session:
132                return _('The previous session must not fall below '
133                         'your entry session.'), None
134            if category == 'schoolfee':
135                # School fee is always paid for the following session
136                if previous_session > student['studycourse'].current_session:
137                    return _('This is not a previous session.'), None
138            else:
139                if previous_session > student['studycourse'].current_session - 1:
140                    return _('This is not a previous session.'), None
141            p_session = previous_session
142            p_level = previous_level
143            p_current = False
144        else:
145            p_session = student['studycourse'].current_session
146            p_level = student['studycourse'].current_level
147            p_current = True
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                # Students can pay for previous sessions in all
160                # workflow states.  Fresh students are excluded by the
161                # update method of the PreviousPaymentAddFormPage.
162                if previous_level == 100:
[14875]163                    if local(student):
164                        amount = getattr(certificate, 'school_fee_1', 0.0)
165                    else:
166                        amount = getattr(certificate, 'school_fee_3', 0.0)
[14860]167                else:
[14875]168                    if local(student):
169                        amount = getattr(certificate, 'school_fee_2', 0.0)
170                    else:
171                        amount = getattr(certificate, 'school_fee_4', 0.0)
[14860]172            else:
[14938]173                # Students are only allowed to pay school fee
[16309]174                # if current session dep_sug_gns payment has been made.
[16416]175                if not self._dep_sug_gns_paymentMade(student, student.current_session):
[16338]176                    return _('You have to pay NADESU/SA/SUG and GNS Dues first.'), None
[15347]177                penalty = getattr(academic_session, 'lsfp_penalty_fee')
178                if  penalty and not self._lsfp_penalty_paymentMade(
179                    student, student.current_session):
180                    return _('You have to pay late school fee payment penalty first.'), None
[14860]181                if student.state == CLEARED:
[14875]182                    if local(student):
183                        amount = getattr(certificate, 'school_fee_1', 0.0)
184                    else:
185                        amount = getattr(certificate, 'school_fee_3', 0.0)
[14860]186                elif student.state == RETURNING:
187                    # In case of returning school fee payment the
188                    # payment session and level contain the values of
189                    # the session the student has paid for. Payment
190                    # session is always next session.
191                    p_session, p_level = self.getReturningData(student)
192                    academic_session = self._getSessionConfiguration(p_session)
193                    if academic_session == None:
194                        return _(
195                            u'Session configuration object is not available.'
196                            ), None
[16013]197                    if p_level in (100, 110, 120, 130) or (
198                        p_level in (300, 310, 320, 330) and
199                        student.current_mode == 'hnd_ft'):
200                        # First-year probating ND students or third year
201                        # probating hnd students are treated like
[15372]202                        # fresh students.
203                        if local(student):
204                            amount = getattr(certificate, 'school_fee_1', 0.0)
205                        else:
206                            amount = getattr(certificate, 'school_fee_3', 0.0)
[14875]207                    else:
[15372]208                        if local(student):
209                            amount = getattr(certificate, 'school_fee_2', 0.0)
210                        else:
211                            amount = getattr(certificate, 'school_fee_4', 0.0)
[16044]212                    if student.current_mode.endswith('_we') and p_level in (
[16043]213                        300, 310, 320, 330, 600, 610, 620, 630):
214                        amount -= 7000
[16421]215                    amount += MICROSOFT_FEE
[14860]216                elif student.is_postgrad and student.state == PAID:
217                    # Returning postgraduate students also pay for the
218                    # next session but their level always remains the
219                    # same.
220                    p_session += 1
221                    academic_session = self._getSessionConfiguration(p_session)
222                    if academic_session == None:
223                        return _(
224                            u'Session configuration object is not available.'
225                            ), None
[14875]226                    if local(student):
227                        amount = getattr(certificate, 'school_fee_2', 0.0)
228                    else:
229                        amount = getattr(certificate, 'school_fee_4', 0.0)
[14860]230        elif category == 'clearance':
231            try:
232                p_item = student['studycourse'].certificate.code
233            except (AttributeError, TypeError):
234                return _('Study course data are incomplete.'), None
235            amount = academic_session.clearance_fee
[15692]236            # HND students pay more
237            if student.current_mode == 'hnd_ft':
238                amount += 3000
[14884]239            # Local ND and HND students are given a rebate which has
240            # to be adjusted if the basic acceptance fee changes.
[15184]241            if amount and student.current_mode == 'nd_ft' and local(student):
[14884]242                amount -= 10000.0
[15184]243            if amount and student.current_mode == 'hnd_ft' and local(student):
[14884]244                amount -= 5000.0
[14860]245        elif category == 'bed_allocation':
246            p_item = self.getAccommodationDetails(student)['bt']
247            amount = academic_session.booking_fee
248        elif category == 'hostel_maintenance':
249            amount = 0.0
250            bedticket = student['accommodation'].get(
251                str(student.current_session), None)
252            if bedticket is not None and bedticket.bed is not None:
253                p_item = bedticket.bed_coordinates
254                if bedticket.bed.__parent__.maint_fee > 0:
255                    amount = bedticket.bed.__parent__.maint_fee
256                else:
257                    # fallback
258                    amount = academic_session.maint_fee
259            else:
260                return _(u'No bed allocated.'), None
[14921]261        elif category == 'dep_sug':
[14938]262            amount = 3150.0 # includes GATEWAY_AMT
[16416]263            #if student.faccode == 'SPAT':
[14940]264            #    amount = 1650.0 # includes GATEWAY_AMT
[16416]265            #    amount = 0.0
[15360]266            if student.state == RETURNING and not previous_session:
267                p_session, p_level = self.getReturningData(student)
[16309]268        elif category.startswith('gns'):
269            if student.state == RETURNING and not previous_session:
270                p_session, p_level = self.getReturningData(student)
271                fee_name = category + '_fee'
272                academic_session = self._getSessionConfiguration(p_session)
273                amount = getattr(academic_session, fee_name, 0.0)
[16312]274            else:
275                fee_name = category + '_fee'
276                amount = getattr(academic_session, fee_name, 0.0)
[14861]277        else:
278            fee_name = category + '_fee'
279            amount = getattr(academic_session, fee_name, 0.0)
[14860]280        if amount in (0.0, None):
281            return _('Amount could not be determined.'), None
282        if self.samePaymentMade(student, category, p_item, p_session):
283            return _('This type of payment has already been made.'), None
284        if self._isPaymentDisabled(p_session, category, student):
285            return _('This category of payments has been disabled.'), None
286        payment = createObject(u'waeup.StudentOnlinePayment')
287        timestamp = ("%d" % int(time()*10000))[1:]
288        payment.p_id = "p%s" % timestamp
289        payment.p_category = category
290        payment.p_item = p_item
291        payment.p_session = p_session
292        payment.p_level = p_level
293        payment.p_current = p_current
294        payment.amount_auth = amount
[14882]295        return None, payment
296
[14956]297    def warnCreditsOOR(self, studylevel, course=None):
[16155]298        """DSPG requires total credits on semester
299        basis.
[14956]300        """
[16155]301        total = [0, 0, 0]
302        for ticket in studylevel.values():
303            if ticket.outstanding:
304                continue
305            if not ticket.semester in (1, 2):
306                total[ticket.semester] += ticket.credits
307            else:
308                total[0] += ticket.credits
309        if course:
310            if course.semester == 1 and total[1] + course.credits > 40:
311                return _('Maximum credits (40) in 1st semester exceeded.')
312            if course.semester == 2 and total[2] + course.credits > 40:
313                return _('Maximum credits (40) in 2nd semester exceeded.')
314        else:
315            if total[1] > 40:
316                return _('Maximum credits (40) in 1st semester exceeded.')
317            if total[2] > 40:
318                return _('Maximum credits (40) in 2nd semester exceeded.')
[14956]319        return
320
[14882]321    #: A tuple containing names of file upload viewlets which are not shown
322    #: on the `StudentClearanceManageFormPage`. Nothing is being skipped
323    #: in the base package. This attribute makes only sense, if intermediate
324    #: custom packages are being used, like we do for all Nigerian portals.
325    SKIP_UPLOAD_VIEWLETS = ('acceptanceletterupload',
326                            'higherqualificationresultupload',
327                            'advancedlevelresultupload',
328                            'evidencenameupload',
329                            'refereeletterupload',
330                            'statutorydeclarationupload',
331                            'firstsittingresultupload',
332                            'secondsittingresultupload',
333                            'certificateupload',
334                            'resultstatementupload',
[14919]335                            )
336
337    #: A tuple containing the names of registration states in which changing of
338    #: passport pictures is allowed.
[15288]339    PORTRAIT_CHANGE_STATES = (ADMITTED, RETURNING,)
340
341    def constructMatricNumber(self, student):
342        #faccode = student.faccode
343        depcode = student.depcode
344        #certcode = student.certcode
345        year = unicode(student.entry_session)[2:]
346        if not student.state in (PAID, ) or not student.is_fresh:
347            return _('Matriculation number cannot be set.'), None
348
349        # ACC/ND/17/00001
350        if student.current_mode == 'nd_ft':
351            next_integer = grok.getSite()['configuration'].next_matric_integer
352            if next_integer == 0:
353                return _('Matriculation number cannot be set.'), None
354            return None, "%s/ND/%s/%05d" % (depcode, year, next_integer)
355
356        # ACC/HND/17/00001
357        if student.current_mode == 'hnd_ft':
358            next_integer = grok.getSite()['configuration'].next_matric_integer_2
359            if next_integer == 0:
360                return _('Matriculation number cannot be set.'), None
361            return None, "%s/HND/%s/%05d" % (depcode, year, next_integer)
362
363        # PT students get the same prefixes but their counter should start
364        # with 10001. This is inconsistent because after 9999 ft students
365        # the ft and pt number ranges will overlap. Issoufou pointed this
366        # out but the director said:
367        # "when the counter gets to 9999 for ft, it can start counting
368        # along where pt is, at that moment."
369
370        # ACC/ND/17/10001
371        if student.current_mode in ('nd_pt, nd_we'):
372            next_integer = grok.getSite()['configuration'].next_matric_integer_3
373            if next_integer == 0:
374                return _('Matriculation number cannot be set.'), None
375            return None, "%s/ND/%s/%05d" % (depcode, year, next_integer)
376        # ACC/HND/17/10001
377        if student.current_mode in ('hnd_pt, hnd_we'):
378            next_integer = grok.getSite()['configuration'].next_matric_integer_4
379            if next_integer == 0:
380                return _('Matriculation number cannot be set.'), None
381            return None, "%s/HND/%s/%05d" % (depcode, year, next_integer)
382
[15345]383        return _('Matriculation number cannot be set.'), None
384
385    def increaseMatricInteger(self, student):
386        """Increase counter for matric numbers.
387        """
388        if student.current_mode == 'nd_ft':
389            grok.getSite()['configuration'].next_matric_integer += 1
390            return
391        elif student.current_mode == 'hnd_ft':
392            grok.getSite()['configuration'].next_matric_integer_2 += 1
393            return
394        elif student.current_mode in ('nd_pt, nd_we'):
395            grok.getSite()['configuration'].next_matric_integer_3 += 1
396            return
397        elif student.current_mode in ('hnd_pt, hnd_we'):
398            grok.getSite()['configuration'].next_matric_integer_4 += 1
399            return
400        return
Note: See TracBrowser for help on using the repository browser.