source: main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py @ 13185

Last change on this file since 13185 was 13128, checked in by Henrik Bettermann, 9 years ago

Move VERDICTS_DICT.

  • Property svn:keywords set to Id
File size: 15.9 KB
Line 
1## $Id: utils.py 13128 2015-07-01 18:39:13Z 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##
18import grok
19import random
20from time import time
21from zope.component import createObject, getUtility
22from waeup.kofa.interfaces import CLEARED, RETURNING, PAID
23from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
24from waeup.kofa.accesscodes import create_accesscode
25from waeup.kofa.interfaces import CLEARED, RETURNING
26from waeup.fceokene.interfaces import MessageFactory as _
27from waeup.kofa.browser.interfaces import IPDFCreator
28from waeup.kofa.students.utils import trans
29from waeup.fceokene.interswitch.browser import GATEWAY_AMT
30
31# Very special school fee configuration, should be moved to
32# a seperate file.
33
34ARTS = ('CRS','ISS','HIS','MUS','ECO','GEO','POL','SOS','CCA','ECU',
35        'THA','GED','GSE','PES','SPC','ENG','FRE','ARB','HAU','IGB',
36        'YOR','NCRS','NISS','NHIS','NMUS','NECO','NGEO','NPOL',
37        'NCCA','NECU','NTHA','NGED','NGSE','NPES','NSPC','NENG',
38        'NFRE','NARB','NHAU','NIGB','NYOR','NSOS')
39
40class CustomStudentsUtils(NigeriaStudentsUtils):
41    """A collection of customized methods.
42
43    """
44
45    def selectBed(self, available_beds):
46        """Randomly select a bed from a list of available beds.
47
48        """
49        return random.choice(available_beds)
50
51    def getReturningData(self, student):
52        """ This method defines what happens after school fee payment
53        of returning students depending on the student's senate verdict.
54        """
55        prev_level = student['studycourse'].current_level
56        cur_verdict = student['studycourse'].current_verdict
57        if cur_verdict in ('A','B','L','M','N','Z',):
58            # Successful student
59            new_level = divmod(int(prev_level),100)[0]*100 + 100
60        elif cur_verdict in ('C','O'):
61            # Student on probation
62            new_level = int(prev_level) + 10
63        else:
64            # Student is somehow in an undefined state.
65            # Level has to be set manually.
66            new_level = prev_level
67        if cur_verdict == 'O':
68            new_session = student['studycourse'].current_session
69        else:
70            new_session = student['studycourse'].current_session + 1
71        return new_session, new_level
72
73    def setPaymentDetails(self, category, student,
74            previous_session=None, previous_level=None):
75        """Create Payment object and set the payment data of a student for
76        the payment category specified.
77
78        """
79        details = {}
80        p_item = u''
81        amount = 0.0
82        error = u''
83        if previous_session:
84            return _('Previous session payment not yet implemented.'), None
85        p_session = student['studycourse'].current_session
86        p_level = student['studycourse'].current_level
87        p_current = True
88        academic_session = self._getSessionConfiguration(p_session)
89        if academic_session == None:
90            return _(u'Session configuration object is not available.'), None
91        # Determine fee.
92        if category == 'transfer':
93            amount = academic_session.transfer_fee
94        elif category == 'gown':
95            amount = academic_session.gown_fee
96        elif category == 'bed_allocation':
97            amount = academic_session.booking_fee
98        elif category == 'hostel_maintenance':
99            current_session = student['studycourse'].current_session
100            bedticket = student['accommodation'].get(str(current_session), None)
101            if bedticket is not None and bedticket.bed is not None:
102                p_item = bedticket.bed_coordinates
103            else:
104                return _(u'You have not yet booked accommodation.'), None
105            acc_details = self.getAccommodationDetails(student)
106            if current_session != acc_details['booking_session']:
107                return _(u'Current session does not match accommodation session.'), None
108            if student.current_mode.endswith('_sw') or student.current_mode == 'pd_ft':
109                amount = 2500.0 #removed interswitch fee
110            else:
111                amount = 4000.0 #removed interswitch fee
112        elif category == 'clearance':
113            amount = academic_session.clearance_fee
114            try:
115                p_item = student['studycourse'].certificate.code
116            except (AttributeError, TypeError):
117                return _('Study course data are incomplete.'), None
118        elif category == 'third_semester' and student.current_mode == 'nce_ft':
119            if student.depcode in ARTS:
120                amount = 6835
121            else:
122                amount = 7763
123        elif category == 'schoolfee':
124            p_item =  student.certcode
125            if not p_item:
126                return _('Study course data are incomplete.'), None
127
128            if student.state not in (CLEARED, RETURNING):
129                return _('Wrong state.'), None
130
131            # PDE repeater
132            if student.current_verdict == 'OPDE':
133                amount = 23000
134            # PDE
135            elif student.current_mode == 'pd_ft':
136                amount = 35300
137
138            #Short Duration ICT Programs
139            elif p_item in ('CCO','DPMTS','DTPGD') and \
140                 student.state == CLEARED:
141                amount = 15000
142            elif p_item in ('ADTPGD','ADPMTS') and \
143                 student.state == CLEARED:
144                amount = 16000
145            elif p_item in ('ADPMTSI','ADTPGDI','DPMTSI','DTPGDI') and \
146                 student.state == CLEARED:
147                amount = 25000
148            elif p_item in ('ADPMTSA','ADTPGDA') and \
149               student.state == CLEARED:
150                amount = 35000
151
152            # UG
153            elif student.current_mode == 'ug_ft':
154            # Introducing returning students fee for 'ug_ft' for 1st time
155            # on 07/01/2014
156                if student.state == CLEARED:
157                    amount = 65650
158                else:
159                    amount = 56150
160            # NCE
161            elif not student.current_mode.endswith('_sw'):
162                # PRENCE
163                if student.current_level == 10 and student.state == CLEARED:
164                    if student.depcode in ARTS:
165                        amount = 17500
166                    else:
167                        amount = 18000
168                # NCE I fresh
169                elif student.current_level == 100 and student.state == CLEARED:
170                    if student.depcode in ARTS:
171                        amount = 14325
172                    else:
173                        amount = 14825
174                # NCE II
175                elif student.current_level in (100, 110, 120) and \
176                    student.state == RETURNING:
177                    if student.depcode in ARTS:
178                        amount = 13375
179                    else:
180                        amount = 13875
181                # NCE III
182                elif student.current_level in (200, 210, 220):
183                    if student.depcode in ARTS:
184                        amount = 13375
185                    else:
186                        amount = 13875
187                # NCE III repeater
188                elif student.current_level in (300, 310, 320) and \
189                    student.current_verdict == 'O':
190                    if student.depcode in ARTS:
191                        amount = 11475
192                    else:
193                        amount = 11975
194                # NCE III spillover
195                elif student.current_level in (300, 310, 320) and \
196                    student.current_verdict == 'B':
197                    if student.depcode in ARTS:
198                        amount = 11975
199                    else:
200                        amount = 11975
201                # NCE III second spillover
202                elif student.current_level in (400, 410, 420) and \
203                    student.current_verdict == 'B':
204                    if student.depcode in ARTS:
205                        amount = 11975
206                    else:
207                        amount = 11975
208            else:
209                if student.current_level == 100 and student.state == CLEARED:
210                    if student.depcode in ARTS:
211                        amount = 22500
212                    else:
213                        amount = 23000
214                # NCE II sw
215                elif student.current_level in (100, 110, 120) and \
216                    student.state == RETURNING:
217                    if student.depcode in ARTS:
218                        amount = 19000
219                    else:
220                        amount = 19500
221                # NCE III sw
222                elif student.current_level in (200, 210, 220):
223                    if student.depcode in ARTS:
224                        amount = 21000
225                    else:
226                        amount = 21000
227                # NCE IV sw
228                elif student.current_level in (300, 310, 320):
229                    if student.depcode in ARTS:
230                        amount = 19000
231                    else:
232                        amount = 19500
233                # NCE V sw
234                elif student.current_level in (400, 410, 420):
235                    if student.depcode in ARTS:
236                        amount = 19000
237                    else:
238                        amount = 19500
239                # NCE V spillover sw
240                elif student.current_level in (500, 510, 520) and \
241                    student.current_verdict == 'B':
242                    if student.depcode in ARTS:
243                        amount = 17500
244                    else:
245                        amount = 18000
246                # NCE V second spillover sw
247                elif student.current_level in (600, 610, 620) and \
248                    student.current_verdict == 'B':
249                    if student.depcode in ARTS:
250                        amount = 17500
251                    else:
252                        amount = 18000
253            # NCE student payment can be disabled by
254            # setting the base school fee to -1
255            if academic_session.school_fee_base == -1 and \
256                student.current_mode.startswith('nce'):
257                return _(u'School fee payment is disabled.'), None
258            if student.state == RETURNING:
259                # Override p_session and p_level
260                p_session, p_level = self.getReturningData(student)
261                academic_session = self._getSessionConfiguration(p_session)
262                if academic_session == None:
263                    return _(u'Session configuration object is not available.'), None
264
265        if amount in (0.0, None):
266            return _(u'Amount could not be determined.'), None
267        if self.samePaymentMade(student, category, p_item, p_session):
268            return _('This type of payment has already been made.'), None
269        if self._isPaymentDisabled(p_session, category, student):
270            return _('Payment temporarily disabled.'), None
271        payment = createObject(u'waeup.StudentOnlinePayment')
272        timestamp = ("%d" % int(time()*10000))[1:]
273        payment.p_id = "p%s" % timestamp
274        payment.p_category = category
275        payment.p_item = p_item
276        payment.p_session = p_session
277        payment.p_level = p_level
278        payment.p_current = p_current
279        # On June 26, 2013 FCEOkene realized that the Interswitch fee
280        # is deducted from their amount. Therefore, we add this fee here.
281        payment.amount_auth = float(amount) + GATEWAY_AMT
282        return None, payment
283
284    def getAccommodationDetails(self, student):
285        """Determine the accommodation data of a student.
286        """
287        d = {}
288        d['error'] = u''
289        hostels = grok.getSite()['hostels']
290        d['booking_session'] = hostels.accommodation_session
291        d['allowed_states'] = hostels.accommodation_states
292        d['startdate'] = hostels.startdate
293        d['enddate'] = hostels.enddate
294        d['expired'] = hostels.expired
295        # Determine bed type
296        studycourse = student['studycourse']
297        certificate = getattr(studycourse,'certificate',None)
298        current_level = studycourse.current_level
299        if None in (current_level, certificate):
300            return d
301        end_level = certificate.end_level
302        if current_level == 10:
303            bt = 'pr'
304        elif current_level == 100:
305            bt = 'fr'
306        elif current_level >= 300:
307            bt = 'fi'
308        else:
309            bt = 're'
310        if student.sex == 'f':
311            sex = 'female'
312        else:
313            sex = 'male'
314        special_handling = 'regular'
315        d['bt'] = u'%s_%s_%s' % (special_handling,sex,bt)
316        return d
317
318    def maxCredits(self, studylevel):
319        """Return maximum credits.
320
321        """
322        return 58
323
324    def getPDFCreator(self, context):
325        """Get a pdf creator suitable for `context`.
326
327        The default implementation always returns the default creator.
328        """
329        mode = getattr(context, 'current_mode', None)
330        if mode and mode.startswith('ug'):
331            return getUtility(IPDFCreator, name='ibadan_pdfcreator')
332        return getUtility(IPDFCreator)
333
334    def _admissionText(self, student, portal_language):
335        mode = getattr(student, 'current_mode', None)
336        if mode and mode.startswith('ug'):
337            text = trans(_(
338                'With reference to your application for admission into Bachelor Degree '
339                'Programme of the University of Ibadan, this is to inform you that you have '
340                'been provisionally admitted to pursue a full-time Bachelor of Arts in '
341                'Education Degree Programme as follows:'),
342                portal_language)
343        else:
344            inst_name = grok.getSite()['configuration'].name
345            text = trans(_(
346                'This is to inform you that you have been provisionally'
347                ' admitted into ${a} as follows:', mapping = {'a': inst_name}),
348                portal_language)
349        return text
350
351    def getBedCoordinates(self, bedticket):
352        """Return bed coordinates.
353
354        Bed coordinates are invisible in FCEOkene.
355        """
356        return _('(see payment slip)')
357
358    def _isPaymentDisabled(self, p_session, category, student):
359        academic_session = self._getSessionConfiguration(p_session)
360        if category == 'schoolfee':
361            if 'sf_all' in academic_session.payment_disabled:
362                return True
363            if 'sf_nce1' in academic_session.payment_disabled and \
364                student.current_level == 100 and student.state == CLEARED and \
365                student.current_mode == 'nce_ft':
366                return True
367        return False
368
369    SEPARATORS_DICT = {
370        'form.fst_sit_fname': _(u'First Sitting Record'),
371        'form.scd_sit_fname': _(u'Second Sitting Record'),
372        #'form.alr_fname': _(u'Advanced Level Record'),
373        'form.hq_type': _(u'Advanced Level Record'),
374        'form.hq2_type': _(u'Second Higher Education Record'),
375        'form.nysc_year': _(u'NYSC Information'),
376        'form.employer': _(u'Employment History'),
377        'form.former_matric': _(u'Former Student'),
378        }
379
380    SKIP_UPLOAD_VIEWLETS = (
381        'higherqualificationresultupload',
382        'secondHigherqualificationresultupload',
383        'certificateupload',
384        'secondcertificateupload',
385        'thirdcertificateupload',
386        'resultstatementupload',
387        'secondrefereeletterupload',
388        'thirdrefereeletterupload',)
389
390    # FCEOkene prefix
391    STUDENT_ID_PREFIX = u'K'
Note: See TracBrowser for help on using the repository browser.