[7419] | 1 | ## $Id: utils.py 8821 2012-06-27 07:24:56Z 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] | 18 | import grok |
---|
[8598] | 19 | from time import time |
---|
| 20 | from zope.component import createObject |
---|
[8473] | 21 | from waeup.kofa.interfaces import CLEARED, RETURNING, PAID |
---|
[8821] | 22 | from kofacustom.nigeria.students.utils import NigeriaStudentsUtils |
---|
[8247] | 23 | from waeup.kofa.accesscodes import create_accesscode |
---|
[8020] | 24 | from waeup.uniben.interfaces import MessageFactory as _ |
---|
[6902] | 25 | |
---|
[8821] | 26 | class CustomStudentsUtils(NigeriaStudentsUtils): |
---|
[7151] | 27 | """A collection of customized methods. |
---|
| 28 | |
---|
| 29 | """ |
---|
| 30 | |
---|
[8270] | 31 | def getReturningData(self, student): |
---|
| 32 | """ This method defines what happens after school fee payment |
---|
[8319] | 33 | of returning students depending on the student's senate verdict. |
---|
[8270] | 34 | """ |
---|
[8319] | 35 | prev_level = student['studycourse'].current_level |
---|
| 36 | cur_verdict = student['studycourse'].current_verdict |
---|
| 37 | if cur_verdict in ('A','B','L','M','N','Z',): |
---|
| 38 | # Successful student |
---|
| 39 | new_level = divmod(int(prev_level),100)[0]*100 + 100 |
---|
| 40 | elif cur_verdict == 'C': |
---|
| 41 | # Student on probation |
---|
| 42 | new_level = int(prev_level) + 10 |
---|
| 43 | else: |
---|
| 44 | # Student is somehow in an undefined state. |
---|
| 45 | # Level has to be set manually. |
---|
| 46 | new_level = prev_level |
---|
[8270] | 47 | new_session = student['studycourse'].current_session + 1 |
---|
| 48 | return new_session, new_level |
---|
| 49 | |
---|
[8598] | 50 | def setPaymentDetails(self, category, student): |
---|
| 51 | """Create Payment object and set the payment data of a student for |
---|
| 52 | the payment category specified. |
---|
| 53 | |
---|
| 54 | """ |
---|
[8306] | 55 | details = {} |
---|
[8598] | 56 | p_item = u'' |
---|
| 57 | amount = 0.0 |
---|
| 58 | error = u'' |
---|
| 59 | p_session = student['studycourse'].current_session |
---|
| 60 | p_level = student['studycourse'].current_level |
---|
| 61 | session = str(p_session) |
---|
[7151] | 62 | try: |
---|
| 63 | academic_session = grok.getSite()['configuration'][session] |
---|
| 64 | except KeyError: |
---|
[8598] | 65 | return _(u'Session configuration object is not available.'), None |
---|
[8676] | 66 | # Determine fee. |
---|
[7151] | 67 | if category == 'transfer': |
---|
[8598] | 68 | amount = academic_session.transfer_fee |
---|
[7151] | 69 | elif category == 'gown': |
---|
[8598] | 70 | amount = academic_session.gown_fee |
---|
[7151] | 71 | elif category == 'bed_allocation': |
---|
[8598] | 72 | amount = academic_session.booking_fee |
---|
[7151] | 73 | elif category == 'hostel_maintenance': |
---|
[8598] | 74 | amount = academic_session.maint_fee |
---|
[7151] | 75 | elif category == 'clearance': |
---|
[8598] | 76 | try: |
---|
| 77 | p_item = student['studycourse'].certificate.code |
---|
| 78 | except (AttributeError, TypeError): |
---|
| 79 | return _('Study course data are incomplete.'), None |
---|
| 80 | if p_item in ('BEDCET', 'BIOEDCET', 'CHMEDCET', 'ISEDCET', |
---|
[8294] | 81 | 'MTHEDCET', 'PHYEDCET', 'ITECET', 'AGREDCET', 'HEEDCET'): |
---|
[8598] | 82 | amount = 17250.0 |
---|
[8294] | 83 | else: |
---|
[8598] | 84 | amount = 34250.0 |
---|
[7151] | 85 | elif category == 'schoolfee': |
---|
[8598] | 86 | try: |
---|
| 87 | certificate = student['studycourse'].certificate |
---|
| 88 | p_item = certificate.code |
---|
| 89 | except (AttributeError, TypeError): |
---|
| 90 | return _('Study course data are incomplete.'), None |
---|
| 91 | if student.state == CLEARED: |
---|
| 92 | amount = getattr(certificate, 'school_fee_1', 0.0) |
---|
| 93 | elif student.state == RETURNING: |
---|
[8306] | 94 | # In case of returning school fee payment the payment session |
---|
| 95 | # and level contain the values of the session the student |
---|
| 96 | # has paid for. |
---|
[8598] | 97 | p_session, p_level = self.getReturningData(student) |
---|
| 98 | amount = getattr(certificate, 'school_fee_2', 0.0) |
---|
| 99 | elif student.is_postgrad and student.state == PAID: |
---|
[8473] | 100 | # Returning postgraduate students also pay for the next session |
---|
| 101 | # but their level always remains the same. |
---|
[8598] | 102 | p_session += 1 |
---|
| 103 | amount = getattr(certificate, 'school_fee_2', 0.0) |
---|
| 104 | if amount in (0.0, None): |
---|
| 105 | return _(u'Amount could not be determined.'), None |
---|
[8676] | 106 | # Add session specific penalty fee. |
---|
| 107 | if category == 'schoolfee' and student.is_postgrad: |
---|
| 108 | amount += academic_session.penalty_pg |
---|
| 109 | elif category == 'schoolfee': |
---|
| 110 | amount += academic_session.penalty_ug |
---|
| 111 | # Create ticket. |
---|
[8598] | 112 | for key in student['payments'].keys(): |
---|
| 113 | ticket = student['payments'][key] |
---|
| 114 | if ticket.p_state == 'paid' and\ |
---|
| 115 | ticket.p_category == category and \ |
---|
| 116 | ticket.p_item == p_item and \ |
---|
| 117 | ticket.p_session == p_session: |
---|
| 118 | return _('This type of payment has already been made.'), None |
---|
[8715] | 119 | payment = createObject(u'waeup.StudentOnlinePayment') |
---|
[8598] | 120 | timestamp = "%d" % int(time()*1000) |
---|
| 121 | payment.p_id = "p%s" % timestamp |
---|
| 122 | payment.p_category = category |
---|
| 123 | payment.p_item = p_item |
---|
| 124 | payment.p_session = p_session |
---|
| 125 | payment.p_level = p_level |
---|
| 126 | payment.amount_auth = amount |
---|
| 127 | return None, payment |
---|
[7621] | 128 | |
---|
[8441] | 129 | # Uniben prefix |
---|
[8413] | 130 | STUDENT_ID_PREFIX = u'B' |
---|