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

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

Change fee again.

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