[16717] | 1 | ## $Id: utils.py 17336 2023-02-07 13:19:39Z henrik $ |
---|
[15614] | 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 | ## |
---|
[16893] | 18 | import grok |
---|
[15614] | 19 | from time import time |
---|
| 20 | from zope.component import createObject, getUtility |
---|
| 21 | from waeup.kofa.interfaces import (IKofaUtils, |
---|
| 22 | CLEARED, RETURNING, PAID, REGISTERED, VALIDATED) |
---|
| 23 | from kofacustom.nigeria.students.utils import NigeriaStudentsUtils |
---|
[16721] | 24 | from kofacustom.unidel.interfaces import MessageFactory as _ |
---|
[15614] | 25 | |
---|
[16790] | 26 | def local(student): |
---|
| 27 | lga = getattr(student, 'lga') |
---|
| 28 | if lga and lga.startswith('delta'): |
---|
| 29 | return True |
---|
| 30 | return False |
---|
| 31 | |
---|
[15614] | 32 | class CustomStudentsUtils(NigeriaStudentsUtils): |
---|
| 33 | """A collection of customized methods. |
---|
| 34 | |
---|
| 35 | """ |
---|
| 36 | |
---|
| 37 | # refix |
---|
[16789] | 38 | STUDENT_ID_PREFIX = u'D' |
---|
[16788] | 39 | |
---|
[17123] | 40 | def _clearancePaymentMade(self, student): |
---|
| 41 | if len(student['payments']): |
---|
| 42 | for ticket in student['payments'].values(): |
---|
| 43 | if ticket.p_state == 'paid' and \ |
---|
| 44 | ticket.p_category == 'clearance': |
---|
| 45 | return True |
---|
| 46 | return False |
---|
| 47 | |
---|
[16788] | 48 | def setPaymentDetails(self, category, student, |
---|
| 49 | previous_session=None, previous_level=None, combi=[]): |
---|
| 50 | """Create a payment ticket and set the payment data of a |
---|
| 51 | student for the payment category specified. |
---|
| 52 | """ |
---|
| 53 | p_item = u'' |
---|
| 54 | amount = 0.0 |
---|
| 55 | if previous_session: |
---|
| 56 | if previous_session < student['studycourse'].entry_session: |
---|
| 57 | return _('The previous session must not fall below ' |
---|
| 58 | 'your entry session.'), None |
---|
| 59 | if category == 'schoolfee': |
---|
| 60 | # School fee is always paid for the following session |
---|
| 61 | if previous_session > student['studycourse'].current_session: |
---|
| 62 | return _('This is not a previous session.'), None |
---|
| 63 | else: |
---|
| 64 | if previous_session > student['studycourse'].current_session - 1: |
---|
| 65 | return _('This is not a previous session.'), None |
---|
| 66 | p_session = previous_session |
---|
| 67 | p_level = previous_level |
---|
| 68 | p_current = False |
---|
| 69 | else: |
---|
| 70 | p_session = student['studycourse'].current_session |
---|
| 71 | p_level = student['studycourse'].current_level |
---|
| 72 | p_current = True |
---|
| 73 | academic_session = self._getSessionConfiguration(p_session) |
---|
| 74 | if academic_session == None: |
---|
| 75 | return _(u'Session configuration object is not available.'), None |
---|
| 76 | # Determine fee. |
---|
| 77 | if category == 'schoolfee': |
---|
| 78 | try: |
---|
| 79 | certificate = student['studycourse'].certificate |
---|
| 80 | p_item = certificate.code |
---|
| 81 | except (AttributeError, TypeError): |
---|
| 82 | return _('Study course data are incomplete.'), None |
---|
| 83 | if previous_session: |
---|
| 84 | # Students can pay for previous sessions in all |
---|
| 85 | # workflow states. Fresh students are excluded by the |
---|
| 86 | # update method of the PreviousPaymentAddFormPage. |
---|
| 87 | if previous_level == 100: |
---|
| 88 | amount = getattr(certificate, 'school_fee_1', 0.0) |
---|
| 89 | else: |
---|
| 90 | amount = getattr(certificate, 'school_fee_2', 0.0) |
---|
| 91 | else: |
---|
[17278] | 92 | if student.faccode == 'JUPEB': |
---|
[17123] | 93 | if not self._clearancePaymentMade(student): |
---|
| 94 | return _(u'Acceptance fee must be paid first.'), None |
---|
[16788] | 95 | if student.state == CLEARED: |
---|
| 96 | amount = getattr(certificate, 'school_fee_1', 0.0) |
---|
| 97 | elif student.state == RETURNING: |
---|
| 98 | # In case of returning school fee payment the |
---|
| 99 | # payment session and level contain the values of |
---|
| 100 | # the session the student has paid for. Payment |
---|
| 101 | # session is always next session. |
---|
| 102 | p_session, p_level = self.getReturningData(student) |
---|
| 103 | academic_session = self._getSessionConfiguration(p_session) |
---|
| 104 | if academic_session == None: |
---|
| 105 | return _( |
---|
| 106 | u'Session configuration object is not available.' |
---|
| 107 | ), None |
---|
| 108 | amount = getattr(certificate, 'school_fee_2', 0.0) |
---|
| 109 | elif student.is_postgrad and student.state == PAID: |
---|
| 110 | # Returning postgraduate students also pay for the |
---|
| 111 | # next session but their level always remains the |
---|
| 112 | # same. |
---|
| 113 | p_session += 1 |
---|
| 114 | academic_session = self._getSessionConfiguration(p_session) |
---|
| 115 | if academic_session == None: |
---|
| 116 | return _( |
---|
| 117 | u'Session configuration object is not available.' |
---|
| 118 | ), None |
---|
| 119 | amount = getattr(certificate, 'school_fee_2', 0.0) |
---|
[17336] | 120 | if amount and not local(student) and not student.faccode in ( |
---|
| 121 | 'PRE', 'JUPEB', 'DELSU'): |
---|
[16835] | 122 | amount += 40000 |
---|
[16788] | 123 | elif category == 'clearance': |
---|
| 124 | try: |
---|
| 125 | p_item = student['studycourse'].certificate.code |
---|
| 126 | except (AttributeError, TypeError): |
---|
| 127 | return _('Study course data are incomplete.'), None |
---|
| 128 | amount = academic_session.clearance_fee |
---|
[17173] | 129 | if local(student): |
---|
| 130 | amount *= 2.0 |
---|
| 131 | else: |
---|
| 132 | amount *= 2.4 |
---|
| 133 | if student.faccode == 'PRE': |
---|
| 134 | amount = 20000.0 |
---|
[17278] | 135 | if student.faccode == 'JUPEB': |
---|
[17173] | 136 | amount = 25000.0 |
---|
[16788] | 137 | elif category == 'bed_allocation': |
---|
[17202] | 138 | acco_details = self.getAccommodationDetails(student) |
---|
| 139 | p_session = acco_details['booking_session'] |
---|
| 140 | p_item = acco_details['bt'] |
---|
| 141 | amount = academic_session.booking_fee |
---|
[16788] | 142 | elif category == 'hostel_maintenance': |
---|
| 143 | amount = 0.0 |
---|
[17202] | 144 | booking_session = grok.getSite()['hostels'].accommodation_session |
---|
| 145 | bedticket = student['accommodation'].get(str(booking_session), None) |
---|
[16788] | 146 | if bedticket is not None and bedticket.bed is not None: |
---|
[17202] | 147 | p_session = booking_session |
---|
[16788] | 148 | p_item = bedticket.bed_coordinates |
---|
| 149 | if bedticket.bed.__parent__.maint_fee > 0: |
---|
| 150 | amount = bedticket.bed.__parent__.maint_fee |
---|
| 151 | else: |
---|
| 152 | # fallback |
---|
| 153 | amount = academic_session.maint_fee |
---|
| 154 | else: |
---|
| 155 | return _(u'No bed allocated.'), None |
---|
| 156 | elif category == 'combi' and combi: |
---|
| 157 | categories = getUtility(IKofaUtils).COMBI_PAYMENT_CATEGORIES |
---|
| 158 | for cat in combi: |
---|
| 159 | fee_name = cat + '_fee' |
---|
| 160 | cat_amount = getattr(academic_session, fee_name, 0.0) |
---|
| 161 | if not cat_amount: |
---|
| 162 | return _('%s undefined.' % categories[cat]), None |
---|
| 163 | amount += cat_amount |
---|
| 164 | p_item += u'%s + ' % categories[cat] |
---|
| 165 | p_item = p_item.strip(' + ') |
---|
| 166 | else: |
---|
| 167 | fee_name = category + '_fee' |
---|
| 168 | amount = getattr(academic_session, fee_name, 0.0) |
---|
[16882] | 169 | if category != 'bed_allocation' and amount in (0.0, None): |
---|
[16788] | 170 | return _('Amount could not be determined.'), None |
---|
| 171 | if self.samePaymentMade(student, category, p_item, p_session): |
---|
| 172 | return _('This type of payment has already been made.'), None |
---|
| 173 | if self._isPaymentDisabled(p_session, category, student): |
---|
| 174 | return _('This category of payments has been disabled.'), None |
---|
| 175 | payment = createObject(u'waeup.StudentOnlinePayment') |
---|
| 176 | timestamp = ("%d" % int(time()*10000))[1:] |
---|
| 177 | payment.p_id = "p%s" % timestamp |
---|
| 178 | payment.p_category = category |
---|
| 179 | payment.p_item = p_item |
---|
| 180 | payment.p_session = p_session |
---|
| 181 | payment.p_level = p_level |
---|
| 182 | payment.p_current = p_current |
---|
| 183 | payment.amount_auth = amount |
---|
| 184 | payment.p_combi = combi |
---|
[16892] | 185 | return None, payment |
---|
| 186 | |
---|
| 187 | def getAccommodationDetails(self, student): |
---|
| 188 | """Determine the accommodation data of a student. |
---|
| 189 | """ |
---|
| 190 | d = {} |
---|
| 191 | d['error'] = u'' |
---|
| 192 | hostels = grok.getSite()['hostels'] |
---|
| 193 | d['booking_session'] = hostels.accommodation_session |
---|
| 194 | d['allowed_states'] = hostels.accommodation_states |
---|
| 195 | d['startdate'] = hostels.startdate |
---|
| 196 | d['enddate'] = hostels.enddate |
---|
| 197 | d['expired'] = hostels.expired |
---|
| 198 | # Determine bed type |
---|
[17312] | 199 | bt = 'all' |
---|
[17328] | 200 | #if student.current_level >= 300: |
---|
| 201 | # bt = 'na' |
---|
[16892] | 202 | if student.sex == 'f': |
---|
| 203 | sex = 'female' |
---|
| 204 | else: |
---|
| 205 | sex = 'male' |
---|
| 206 | special_handling = 'regular' |
---|
[17328] | 207 | #if student.faccode in ('FLW', 'FMS'): |
---|
| 208 | # special_handling = 'oyibu' |
---|
| 209 | #if student.faccode in ('FET', 'FES'): |
---|
| 210 | # special_handling = 'alero' |
---|
[16892] | 211 | d['bt'] = u'%s_%s_%s' % (special_handling,sex,bt) |
---|
[17304] | 212 | return d |
---|
| 213 | |
---|