[7419] | 1 | ## $Id: utils.py 11455 2014-02-27 11:00:37Z 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 |
---|
[8600] | 19 | from time import time |
---|
| 20 | from zope.component import createObject |
---|
[10922] | 21 | from waeup.kofa.interfaces import ( |
---|
| 22 | CLEARED, RETURNING, PAID, academic_sessions_vocab) |
---|
[8823] | 23 | from kofacustom.nigeria.students.utils import NigeriaStudentsUtils |
---|
[8247] | 24 | from waeup.kofa.accesscodes import create_accesscode |
---|
[10922] | 25 | from waeup.kofa.students.utils import trans |
---|
[8444] | 26 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
[6902] | 27 | |
---|
[8823] | 28 | class CustomStudentsUtils(NigeriaStudentsUtils): |
---|
[7151] | 29 | """A collection of customized methods. |
---|
| 30 | |
---|
| 31 | """ |
---|
| 32 | |
---|
[10656] | 33 | VERDICTS_DICT = { |
---|
| 34 | '0': 'not yet', |
---|
| 35 | 'A': 'Successful student', |
---|
| 36 | 'B': 'Student with carryover courses', |
---|
| 37 | 'C': 'Student on probation', |
---|
| 38 | #'D': 'Withdrawn from the faculty', |
---|
| 39 | #'E': 'Student who were previously on probation', |
---|
| 40 | #'F': 'Medical case', |
---|
| 41 | #'G': 'Absent from examination', |
---|
| 42 | #'H': 'Withheld results', |
---|
| 43 | #'I': 'Expelled/rusticated/suspended student', |
---|
| 44 | #'J': 'Temporary withdrawn from the university', |
---|
| 45 | #'K': 'Unregistered student', |
---|
| 46 | #'L': 'Referred student', |
---|
| 47 | #'M': 'Reinstatement', |
---|
| 48 | #'N': 'Student on transfer', |
---|
| 49 | #'O': 'NCE-III repeater', |
---|
| 50 | #'Y': 'No previous verdict', |
---|
| 51 | #'X': 'New 300 level student', |
---|
| 52 | 'Z': 'Successful student (provisional)', |
---|
| 53 | #'A1': 'First Class', |
---|
| 54 | #'A2': 'Second Class Upper', |
---|
| 55 | #'A3': 'Second Class Lower', |
---|
| 56 | #'A4': 'Third Class', |
---|
| 57 | #'A5': 'Pass', |
---|
| 58 | #'A6': 'Distinction', |
---|
| 59 | #'A7': 'Credit', |
---|
| 60 | #'A8': 'Merit', |
---|
| 61 | 'NEOR': 'No evidence of registration', |
---|
| 62 | 'NEOV': 'No evidence of verification', |
---|
| 63 | 'FRNS': 'Faculty requirements not satisfied', |
---|
| 64 | } |
---|
| 65 | |
---|
[10641] | 66 | gpa_boundaries = ((1, 'FRNS'), |
---|
| 67 | (1.5, 'Pass'), |
---|
| 68 | (2.4, '3rd Class Honours'), |
---|
| 69 | (3.5, '2nd Class Honours Lower Division'), |
---|
| 70 | (4.5, '2nd Class Honours Upper Division'), |
---|
| 71 | (5, '1st Class Honours')) |
---|
| 72 | |
---|
[8270] | 73 | def getReturningData(self, student): |
---|
| 74 | """ This method defines what happens after school fee payment |
---|
[8319] | 75 | of returning students depending on the student's senate verdict. |
---|
[8270] | 76 | """ |
---|
[8319] | 77 | prev_level = student['studycourse'].current_level |
---|
| 78 | cur_verdict = student['studycourse'].current_verdict |
---|
| 79 | if cur_verdict in ('A','B','L','M','N','Z',): |
---|
| 80 | # Successful student |
---|
| 81 | new_level = divmod(int(prev_level),100)[0]*100 + 100 |
---|
| 82 | elif cur_verdict == 'C': |
---|
| 83 | # Student on probation |
---|
| 84 | new_level = int(prev_level) + 10 |
---|
| 85 | else: |
---|
| 86 | # Student is somehow in an undefined state. |
---|
| 87 | # Level has to be set manually. |
---|
| 88 | new_level = prev_level |
---|
[8270] | 89 | new_session = student['studycourse'].current_session + 1 |
---|
| 90 | return new_session, new_level |
---|
| 91 | |
---|
[9154] | 92 | def setPaymentDetails(self, category, student, |
---|
| 93 | previous_session=None, previous_level=None): |
---|
[8600] | 94 | """Create Payment object and set the payment data of a student for |
---|
| 95 | the payment category specified. |
---|
| 96 | |
---|
| 97 | """ |
---|
[8306] | 98 | details = {} |
---|
[8600] | 99 | p_item = u'' |
---|
| 100 | amount = 0.0 |
---|
| 101 | error = u'' |
---|
[9154] | 102 | if previous_session: |
---|
| 103 | return _('Previous session payment not yet implemented.'), None |
---|
[8600] | 104 | p_session = student['studycourse'].current_session |
---|
| 105 | p_level = student['studycourse'].current_level |
---|
[9154] | 106 | p_current = True |
---|
[9527] | 107 | academic_session = self._getSessionConfiguration(p_session) |
---|
| 108 | if academic_session == None: |
---|
[8600] | 109 | return _(u'Session configuration object is not available.'), None |
---|
[8677] | 110 | # Determine fee. |
---|
[7151] | 111 | if category == 'transfer': |
---|
[8600] | 112 | amount = academic_session.transfer_fee |
---|
[10467] | 113 | elif category == 'transcript': |
---|
| 114 | amount = academic_session.transcript_fee |
---|
[7151] | 115 | elif category == 'gown': |
---|
[8600] | 116 | amount = academic_session.gown_fee |
---|
[7151] | 117 | elif category == 'bed_allocation': |
---|
[8600] | 118 | amount = academic_session.booking_fee |
---|
[7151] | 119 | elif category == 'hostel_maintenance': |
---|
[8600] | 120 | amount = academic_session.maint_fee |
---|
[7151] | 121 | elif category == 'clearance': |
---|
[8753] | 122 | amount = academic_session.clearance_fee |
---|
| 123 | p_item = student['studycourse'].certificate.code |
---|
[11004] | 124 | elif category == 'late_registration': |
---|
| 125 | amount = academic_session.late_fee |
---|
[9905] | 126 | elif category == 'schoolfee': |
---|
[8600] | 127 | try: |
---|
[8753] | 128 | certificate = student['studycourse'].certificate |
---|
| 129 | p_item = certificate.code |
---|
[8600] | 130 | except (AttributeError, TypeError): |
---|
| 131 | return _('Study course data are incomplete.'), None |
---|
[8753] | 132 | if student.state == CLEARED: |
---|
[10922] | 133 | if student.faccode == 'FP': |
---|
[10931] | 134 | amount = 84000.0 |
---|
[10930] | 135 | else: |
---|
| 136 | amount = academic_session.school_fee |
---|
[8961] | 137 | elif student.state == RETURNING or\ |
---|
| 138 | (student.is_postgrad and student.state == PAID): |
---|
[9527] | 139 | academic_session = self._getSessionConfiguration(p_session) |
---|
| 140 | if academic_session == None: |
---|
| 141 | return _(u'Session configuration object is not available.'), None |
---|
[8961] | 142 | if student.state == RETURNING: |
---|
| 143 | p_session, p_level = self.getReturningData(student) |
---|
| 144 | else: |
---|
| 145 | # Returning postgraduate students also pay for the |
---|
| 146 | # next session but their level always remains the same. |
---|
| 147 | p_session += 1 |
---|
| 148 | try: |
---|
| 149 | academic_session = grok.getSite()[ |
---|
| 150 | 'configuration'][str(p_session)] |
---|
| 151 | except KeyError: |
---|
| 152 | return _(u'Session configuration object is not available.'), None |
---|
[9905] | 153 | amount = academic_session.school_fee |
---|
[8600] | 154 | else: |
---|
[8753] | 155 | return _('Wrong state.'), None |
---|
[8600] | 156 | if amount in (0.0, None): |
---|
| 157 | return _(u'Amount could not be determined.'), None |
---|
[8677] | 158 | # Add session specific penalty fee. |
---|
[9905] | 159 | if category == 'schoolfee' and student.is_postgrad: |
---|
[8677] | 160 | amount += academic_session.penalty_pg |
---|
[9905] | 161 | elif category == 'schoolfee': |
---|
[8677] | 162 | amount += academic_session.penalty_ug |
---|
| 163 | # Create ticket. |
---|
[8600] | 164 | for key in student['payments'].keys(): |
---|
| 165 | ticket = student['payments'][key] |
---|
| 166 | if ticket.p_state == 'paid' and\ |
---|
| 167 | ticket.p_category == category and \ |
---|
| 168 | ticket.p_item == p_item and \ |
---|
| 169 | ticket.p_session == p_session: |
---|
| 170 | return _('This type of payment has already been made.'), None |
---|
[11455] | 171 | if self._isPaymentDisabled(p_session, category, student): |
---|
| 172 | return _('Payment temporarily disabled.'), None |
---|
[8712] | 173 | payment = createObject(u'waeup.StudentOnlinePayment') |
---|
[8954] | 174 | timestamp = ("%d" % int(time()*10000))[1:] |
---|
[8600] | 175 | payment.p_id = "p%s" % timestamp |
---|
| 176 | payment.p_category = category |
---|
| 177 | payment.p_item = p_item |
---|
| 178 | payment.p_session = p_session |
---|
| 179 | payment.p_level = p_level |
---|
[9154] | 180 | payment.p_current = p_current |
---|
[8600] | 181 | payment.amount_auth = amount |
---|
| 182 | return None, payment |
---|
[7621] | 183 | |
---|
[10922] | 184 | def _admissionText(self, student, portal_language): |
---|
| 185 | inst_name = grok.getSite()['configuration'].name |
---|
| 186 | entry_session = student['studycourse'].entry_session |
---|
| 187 | entry_session = academic_sessions_vocab.getTerm(entry_session).title |
---|
| 188 | text = trans(_( |
---|
[10953] | 189 | 'This is to inform you that you have been offered provisional' |
---|
| 190 | ' admission into ${a} for the ${b} academic session as follows:', |
---|
[10922] | 191 | mapping = {'a': inst_name, 'b': entry_session}), |
---|
| 192 | portal_language) |
---|
| 193 | return text |
---|
| 194 | |
---|
[10051] | 195 | def maxCredits(self, studylevel): |
---|
| 196 | """Return maximum credits. |
---|
| 197 | |
---|
| 198 | """ |
---|
| 199 | return 48 |
---|
| 200 | |
---|
[8444] | 201 | # AAUE prefix |
---|
| 202 | STUDENT_ID_PREFIX = u'E' |
---|