source: main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/students/utils.py @ 12634

Last change on this file since 12634 was 12148, checked in by Henrik Bettermann, 10 years ago

Maint payment checking disabled on Dec 5th, 2014.

  • Property svn:keywords set to Id
File size: 12.9 KB
RevLine 
[7419]1## $Id: utils.py 12148 2014-12-05 10:01:59Z 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
[9737]21from zope.component import createObject, getUtility
[10675]22from zope.catalog.interfaces import ICatalog
[8475]23from waeup.kofa.interfaces import CLEARED, RETURNING, PAID
[8834]24from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
[8247]25from waeup.kofa.accesscodes import create_accesscode
[10708]26from waeup.kofa.interfaces import CLEARED, RETURNING, ADMITTED, IKofaUtils
[9393]27from waeup.kofa.fees import FeeTable
[10675]28from waeup.kofa.hostels.hostel import NOT_OCCUPIED
[9347]29from waeup.kwarapoly.interfaces import MessageFactory as _
[6902]30
[9393]31
[9811]32# 10  = PreND (1)
33# 100 = ND1 (2)
34# 110 = ND1R (3)
35# 200 = ND2 (4)
36# 210 = ND2R (5)
37# 300 = ND3 (6)
38# 400 = HND1 (7)
39# 410 = HND1R (8)
40# 500 = HND2 (9)
41# 510 = HND2R (10)
42# 600 = HND3 (11)
43# 999 = PGD (12)
44
45PAYMENT_LEVELS = (10, 100, 110, 200, 210, 300, 400, 410, 500, 510, 600, 999)
46
[9393]47FEES_PARAMS = (
48        ('ft', 'pt'),
49        ('local', 'non-local'),
50        ('science','arts'),
51        PAYMENT_LEVELS
52    )
53
54FEES_VALUES = (
55        (
[9811]56          ( # 10       100      110      200      210     300    400     410      500      510     600   999
[11865]57            (34500.0, 39400.0, 28800.0, 30500.0, 28800.0, 0.0, 40000.0, 29900.0, 33700.0, 29900.0, 0.0, 48750.0), # science
58            (34500.0, 37900.0, 27300.0, 29000.0, 27300.0, 0.0, 38500.0, 28400.0, 32200.0, 28400.0, 0.0, 47200.0)  # arts
[9393]59          ), # local
[9811]60          ( # 10       100      110      200      210     300    400     410      500      510     600   999
[11865]61            (49600.0, 53900.0, 35900.0, 33090.0, 35900.0, 0.0, 56400.0, 38600.0, 36900.0, 38600.0, 0.0, 63180.0), # science
62            (49600.0, 52400.0, 34400.0, 31590.0, 34400.0, 0.0, 54900.0, 37100.0, 35400.0, 37100.0, 0.0, 61680.0)  # arts
[9393]63          ), # non-local
64        ), # ft
65        (
[11865]66          ( # 10    100       110    200      210      300      400        410    500     510       600     999
67            (0.0, 40700.0, 28800.0, 30900.0, 28800.0, 30900.0, 41100.0, 29900.0, 33050.0, 29900.0, 33050.0, 0.0), # science
68            (0.0, 39200.0, 27300.0, 29400.0, 27300.0, 29400.0, 39600.0, 28400.0, 31550.0, 28400.0, 31550.0, 0.0)  # arts
[9393]69          ), # local
[11865]70          ( # 10   100         110    200       210      300      400     410      500     510      600     999
71            (0.0, 55400.0, 35900.0, 34850.0, 35900.0, 34850.0, 57800.0, 38600.0, 44350.0, 38600.0, 44350.0, 0.0), # science
72            (0.0, 53900.0, 34400.0, 33350.0, 34400.0, 33350.0, 56300.0, 37100.0, 42850.0, 37100.0, 42850.0, 0.0)  # arts
[9393]73          ), # non-local
74        ), # pt
75    )
76
77SCHOOL_FEES = FeeTable(FEES_PARAMS, FEES_VALUES)
78
79def local_nonlocal(student):
80    lga = getattr(student, 'lga')
[9568]81    if lga and lga.startswith('kwara'):
[9393]82        return 'local'
83    else:
84        return 'non-local'
85
86def arts_science(student):
87    if student.faccode == 'IFMS':
88        return 'arts'
89    else:
90        return 'science'
91
92def pt_ft(student):
93    if student.current_mode.endswith('pt'):
94        return 'pt'
95    else:
96        return 'ft'
97
[8834]98class CustomStudentsUtils(NigeriaStudentsUtils):
[7151]99    """A collection of customized methods.
100
101    """
102
[12008]103    def maxCredits(self, studylevel):
104        # Students do not have any credit load limit
[12049]105        return None
[9393]106
[9190]107    def selectBed(self, available_beds):
108        """Randomly select a bed from a list of available beds.
109
110        """
111        return random.choice(available_beds)
112
[8270]113    def getReturningData(self, student):
114        """ This method defines what happens after school fee payment
[8319]115        of returning students depending on the student's senate verdict.
[8270]116        """
[8319]117        prev_level = student['studycourse'].current_level
118        cur_verdict = student['studycourse'].current_verdict
119        if cur_verdict in ('A','B','L','M','N','Z',):
120            # Successful student
121            new_level = divmod(int(prev_level),100)[0]*100 + 100
122        elif cur_verdict == 'C':
123            # Student on probation
124            new_level = int(prev_level) + 10
125        else:
126            # Student is somehow in an undefined state.
127            # Level has to be set manually.
128            new_level = prev_level
[8270]129        new_session = student['studycourse'].current_session + 1
130        return new_session, new_level
131
[10675]132    def _maintPaymentMade(self, student, session):
133
[12148]134        # Maint payment checking disabled on 5th Dec 2014
135        return True
136
137        #if len(student['payments']):
138        #    for ticket in student['payments'].values():
139        #        if ticket.p_category == 'hostel_maintenance' and \
140        #            ticket.p_session == session and ticket.p_state == 'paid':
141        #                return True
142        #return False
143
[10675]144    def _bedAvailable(self, student):
145        acc_details  = self.getAccommodationDetails(student)
146        cat = getUtility(ICatalog, name='beds_catalog')
147        entries = cat.searchResults(
148            owner=(student.student_id,student.student_id))
149        if len(entries):
150            # Bed has already been booked.
151            return True
152        entries = cat.searchResults(
153            bed_type=(acc_details['bt'],acc_details['bt']))
154        available_beds = [
155            entry for entry in entries if entry.owner == NOT_OCCUPIED]
156        if available_beds:
157            # Bed has not yet been booked but beds are available.
158            return True
159        return False
160
[11453]161    def _isPaymentDisabled(self, p_session, category, student):
162        academic_session = self._getSessionConfiguration(p_session)
163        if category == 'schoolfee':
164            if 'sf_all' in academic_session.payment_disabled:
165                return True
166            if 'sf_non_pg' in academic_session.payment_disabled and \
167                not student.is_postgrad:
168                return True
169        return False
170
[9153]171    def setPaymentDetails(self, category, student,
172            previous_session=None, previous_level=None):
[8599]173        """Create Payment object and set the payment data of a student for
174        the payment category specified.
175
176        """
[8306]177        details = {}
[8599]178        p_item = u''
179        amount = 0.0
180        error = u''
[9153]181        if previous_session:
182            return _('Previous session payment not yet implemented.'), None
[8599]183        p_session = student['studycourse'].current_session
184        p_level = student['studycourse'].current_level
[9153]185        p_current = True
[9526]186        academic_session = self._getSessionConfiguration(p_session)
187        if academic_session == None:
[8599]188            return _(u'Session configuration object is not available.'), None
[9526]189        # Determine fee.
[7151]190        if category == 'transfer':
[8599]191            amount = academic_session.transfer_fee
[7151]192        elif category == 'gown':
[8599]193            amount = academic_session.gown_fee
[7151]194        elif category == 'bed_allocation':
[8599]195            amount = academic_session.booking_fee
[7151]196        elif category == 'hostel_maintenance':
[10682]197            amount = 0.0
198            bedticket = student['accommodation'].get(
199                str(student.current_session), None)
200            if bedticket:
201                p_item = bedticket.bed_coordinates
202                if bedticket.bed.__parent__.maint_fee > 0:
203                    amount = bedticket.bed.__parent__.maint_fee
204                else:
205                    # fallback
206                    amount = academic_session.maint_fee
207            else:
208                # Should not happen because this is already checked
209                # in the browser module, but anyway ...
210                portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE
211                p_item = trans(_('no bed allocated'), portal_language)
[7151]212        elif category == 'clearance':
[9143]213            amount = academic_session.clearance_fee
[8599]214            try:
215                p_item = student['studycourse'].certificate.code
216            except (AttributeError, TypeError):
217                return _('Study course data are incomplete.'), None
[7151]218        elif category == 'schoolfee':
[8599]219            try:
220                certificate = student['studycourse'].certificate
221                p_item = certificate.code
222            except (AttributeError, TypeError):
223                return _('Study course data are incomplete.'), None
[9297]224            if student.state == RETURNING:
[9526]225                # Override p_session and p_level
[9297]226                p_session, p_level = self.getReturningData(student)
[9526]227                academic_session = self._getSessionConfiguration(p_session)
228                if academic_session == None:
[10679]229                    return _(u'Session configuration object '
230                              'is not available.'), None
231            if student.state == CLEARED and student.current_mode in (
232                                                            'hnd_ft', 'nd_ft'):
[10675]233                # Fresh students must have booked and paid for accommodation.
234                if self._bedAvailable(student):
[11944]235                    if not student.faccode == 'IOT' and \
236                        not self._maintPaymentMade(student, p_session):
[10675]237                        return _('Book and pay for accommodation first '
238                                 'before making school fee payments.'), None
[9388]239            if student.state in (RETURNING, CLEARED):
[9393]240                if p_level in PAYMENT_LEVELS:
241                    amount = SCHOOL_FEES.get_fee(
242                        (pt_ft(student),
243                         local_nonlocal(student),
244                         arts_science(student),
245                         p_level)
246                        )
[9737]247        elif category == 'carryover1':
[9724]248            amount = 6000.0
[9737]249        elif category == 'carryover2':
[9724]250            amount = 7000.0
[9737]251        elif category == 'carryover3':
[9724]252            amount = 8000.0
[10735]253
254        else:
255            fee_name = category + '_fee'
256            amount = getattr(academic_session, fee_name, 0.0)
[8599]257        if amount in (0.0, None):
258            return _(u'Amount could not be determined.'), None
[11646]259        if self.samePaymentMade(student, category, p_item, p_session):
260            return _('This type of payment has already been made.'), None
[11623]261        # Add session specific penalty fee.
262        if category == 'schoolfee' and student.is_postgrad:
263            amount += academic_session.penalty_pg
264        elif category == 'schoolfee':
265            amount += academic_session.penalty_ug
266        # Recategorize carryover fees.
[9737]267        if category.startswith('carryover'):
268            p_item = getUtility(IKofaUtils).PAYMENT_CATEGORIES[category]
269            p_item = unicode(p_item)
270            # Now we change the category to reduce the number of categories.
271            category = 'schoolfee'
[11453]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
[9143]282        payment.amount_auth = float(amount)
[8599]283        return None, payment
[7621]284
[9207]285    def getAccommodationDetails(self, student):
286        """Determine the accommodation data of a student.
287        """
288        d = {}
289        d['error'] = u''
290        hostels = grok.getSite()['hostels']
291        d['booking_session'] = hostels.accommodation_session
292        d['allowed_states'] = hostels.accommodation_states
293        d['startdate'] = hostels.startdate
294        d['enddate'] = hostels.enddate
295        d['expired'] = hostels.expired
296        # Determine bed type
297        studycourse = student['studycourse']
298        certificate = getattr(studycourse,'certificate',None)
299        current_level = studycourse.current_level
300        if None in (current_level, certificate):
301            return d
302        end_level = certificate.end_level
303        if current_level == 10:
304            bt = 'pr'
[9614]305        elif current_level in (100, 400):
[9207]306            bt = 'fr'
[9614]307        elif current_level in (300, 600):
[9207]308            bt = 'fi'
309        else:
310            bt = 're'
311        if student.sex == 'f':
312            sex = 'female'
313        else:
314            sex = 'male'
315        special_handling = 'regular'
[11965]316        if student.faccode == 'IOT':
317            special_handling = 'iot'
[9207]318        d['bt'] = u'%s_%s_%s' % (special_handling,sex,bt)
319        return d
320
[10756]321    PWCHANGE_STATES = (ADMITTED, CLEARED, RETURNING)
[10708]322
[9347]323    # KwaraPoly prefix
[10672]324    STUDENT_ID_PREFIX = u'W'
Note: See TracBrowser for help on using the repository browser.