1 | ## $Id: utils.py 13609 2016-01-13 09:16:36Z 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 | ## |
---|
18 | import grok |
---|
19 | from time import time |
---|
20 | from zope.component import createObject |
---|
21 | from waeup.kofa.interfaces import ( |
---|
22 | ADMITTED, CLEARANCE, REQUESTED, CLEARED, RETURNING, PAID, |
---|
23 | academic_sessions_vocab) |
---|
24 | from kofacustom.nigeria.students.utils import NigeriaStudentsUtils |
---|
25 | from waeup.kofa.accesscodes import create_accesscode |
---|
26 | from waeup.kofa.students.utils import trans |
---|
27 | from waeup.aaue.interswitch.browser import gateway_net_amt |
---|
28 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
29 | |
---|
30 | class CustomStudentsUtils(NigeriaStudentsUtils): |
---|
31 | """A collection of customized methods. |
---|
32 | |
---|
33 | """ |
---|
34 | |
---|
35 | PORTRAIT_CHANGE_STATES = (ADMITTED, RETURNING) |
---|
36 | |
---|
37 | gpa_boundaries = ((1, 'FRNS'), |
---|
38 | (1.5, 'Pass'), |
---|
39 | (2.4, '3rd Class Honours'), |
---|
40 | (3.5, '2nd Class Honours Lower Division'), |
---|
41 | (4.5, '2nd Class Honours Upper Division'), |
---|
42 | (5, '1st Class Honours')) |
---|
43 | |
---|
44 | def increaseMatricInteger(self, student): |
---|
45 | """Increase counter for matric numbers. |
---|
46 | This counter can be a centrally stored attribute or an attribute of |
---|
47 | faculties, departments or certificates. In the base package the counter |
---|
48 | is as an attribute of the site configuration container. |
---|
49 | """ |
---|
50 | if student.current_mode in ('ug_pt', 'de_pt'): |
---|
51 | grok.getSite()['configuration'].next_matric_integer += 1 |
---|
52 | return |
---|
53 | elif student.is_postgrad: |
---|
54 | grok.getSite()['configuration'].next_matric_integer_3 += 1 |
---|
55 | return |
---|
56 | grok.getSite()['configuration'].next_matric_integer_2 += 1 |
---|
57 | return |
---|
58 | |
---|
59 | def constructMatricNumber(self, student): |
---|
60 | faccode = student.faccode |
---|
61 | depcode = student.depcode |
---|
62 | certcode = student.certcode |
---|
63 | year = unicode(student.entry_session)[2:] |
---|
64 | if not student.state in (PAID, ) or not student.is_fresh or \ |
---|
65 | student.current_mode == 'found': |
---|
66 | return _('Matriculation number cannot be set.'), None |
---|
67 | if student.is_postgrad: |
---|
68 | next_integer = grok.getSite()['configuration'].next_matric_integer_3 |
---|
69 | if next_integer == 0: |
---|
70 | return _('Matriculation number cannot be set.'), None |
---|
71 | return None, "AAU/SPS/%s/%s/%s/%s/%05d" % ( |
---|
72 | faccode, depcode, year, certcode, next_integer) |
---|
73 | if student.current_mode in ('ug_pt', 'de_pt'): |
---|
74 | next_integer = grok.getSite()['configuration'].next_matric_integer |
---|
75 | if next_integer == 0: |
---|
76 | return _('Matriculation number cannot be set.'), None |
---|
77 | return None, "PTP/%s/%s/%s/%05d" % ( |
---|
78 | faccode, depcode, year, next_integer) |
---|
79 | next_integer = grok.getSite()['configuration'].next_matric_integer_2 |
---|
80 | if next_integer == 0: |
---|
81 | return _('Matriculation number cannot be set.'), None |
---|
82 | if student.faccode in ('FBM', 'FCS'): |
---|
83 | return None, "CMS/%s/%s/%s/%05d" % ( |
---|
84 | faccode, depcode, year, next_integer) |
---|
85 | return None, "%s/%s/%s/%05d" % (faccode, depcode, year, next_integer) |
---|
86 | |
---|
87 | def getReturningData(self, student): |
---|
88 | """ This method defines what happens after school fee payment |
---|
89 | of returning students depending on the student's senate verdict. |
---|
90 | """ |
---|
91 | prev_level = student['studycourse'].current_level |
---|
92 | cur_verdict = student['studycourse'].current_verdict |
---|
93 | if cur_verdict in ('A','B','L','M','N','Z',): |
---|
94 | # Successful student |
---|
95 | new_level = divmod(int(prev_level),100)[0]*100 + 100 |
---|
96 | elif cur_verdict == 'C': |
---|
97 | # Student on probation |
---|
98 | new_level = int(prev_level) + 10 |
---|
99 | else: |
---|
100 | # Student is somehow in an undefined state. |
---|
101 | # Level has to be set manually. |
---|
102 | new_level = prev_level |
---|
103 | new_session = student['studycourse'].current_session + 1 |
---|
104 | return new_session, new_level |
---|
105 | |
---|
106 | def _isPaymentDisabled(self, p_session, category, student): |
---|
107 | academic_session = self._getSessionConfiguration(p_session) |
---|
108 | if category == 'schoolfee' and \ |
---|
109 | 'sf_all' in academic_session.payment_disabled: |
---|
110 | return True |
---|
111 | if category == 'hostel_maintenance' and \ |
---|
112 | 'maint_all' in academic_session.payment_disabled: |
---|
113 | return True |
---|
114 | return False |
---|
115 | |
---|
116 | def setPaymentDetails(self, category, student, |
---|
117 | previous_session=None, previous_level=None): |
---|
118 | """Create Payment object and set the payment data of a student for |
---|
119 | the payment category specified. |
---|
120 | |
---|
121 | """ |
---|
122 | details = {} |
---|
123 | p_item = u'' |
---|
124 | amount = 0.0 |
---|
125 | error = u'' |
---|
126 | if previous_session: |
---|
127 | return _('Previous session payment not yet implemented.'), None |
---|
128 | p_session = student['studycourse'].current_session |
---|
129 | p_level = student['studycourse'].current_level |
---|
130 | p_current = True |
---|
131 | academic_session = self._getSessionConfiguration(p_session) |
---|
132 | if academic_session == None: |
---|
133 | return _(u'Session configuration object is not available.'), None |
---|
134 | # Determine fee. |
---|
135 | if category == 'transfer': |
---|
136 | amount = academic_session.transfer_fee |
---|
137 | elif category == 'transcript': |
---|
138 | amount = academic_session.transcript_fee |
---|
139 | elif category == 'bed_allocation': |
---|
140 | amount = academic_session.booking_fee |
---|
141 | elif category == 'hostel_maintenance': |
---|
142 | amount = 0.0 |
---|
143 | bedticket = student['accommodation'].get( |
---|
144 | str(student.current_session), None) |
---|
145 | if bedticket is not None and bedticket.bed is not None: |
---|
146 | p_item = bedticket.display_coordinates |
---|
147 | if bedticket.bed.__parent__.maint_fee > 0: |
---|
148 | amount = bedticket.bed.__parent__.maint_fee |
---|
149 | else: |
---|
150 | # fallback |
---|
151 | amount = academic_session.maint_fee |
---|
152 | else: |
---|
153 | return _(u'No bed allocated.'), None |
---|
154 | elif category == 'welfare': |
---|
155 | amount = academic_session.welfare_fee |
---|
156 | elif category == 'union': |
---|
157 | amount = academic_session.union_fee |
---|
158 | elif category == 'lapel': |
---|
159 | amount = academic_session.lapel_fee |
---|
160 | elif category == 'matric_gown': |
---|
161 | amount = academic_session.matric_gown_fee |
---|
162 | elif category == 'concessional': |
---|
163 | amount = academic_session.concessional_fee |
---|
164 | elif category.startswith('clearance'): |
---|
165 | if student.state not in (ADMITTED, CLEARANCE, REQUESTED, CLEARED): |
---|
166 | return _(u'Acceptance Fee payments not allowed.'), None |
---|
167 | if student.faccode == 'FP': |
---|
168 | amount = academic_session.clearance_fee_fp |
---|
169 | elif student.current_mode.endswith('_pt'): |
---|
170 | amount = academic_session.clearance_fee_pt |
---|
171 | elif student.faccode == 'FCS': |
---|
172 | # Students in clinical medical sciences pay the medical |
---|
173 | # acceptance fee |
---|
174 | amount = academic_session.clearance_fee_med |
---|
175 | elif student.is_postgrad: |
---|
176 | amount = academic_session.clearance_fee_pg |
---|
177 | else: |
---|
178 | amount = academic_session.clearance_fee |
---|
179 | p_item = student['studycourse'].certificate.code |
---|
180 | # Add Matric Gown Fee and Lapel Fee |
---|
181 | if category.endswith('_incl'): |
---|
182 | if amount is None: |
---|
183 | # Otherwise we can't add somtehing |
---|
184 | amount = 0.0 |
---|
185 | amount += gateway_net_amt(academic_session.matric_gown_fee) + \ |
---|
186 | gateway_net_amt(academic_session.lapel_fee) |
---|
187 | elif category == 'late_registration': |
---|
188 | amount = academic_session.late_registration_fee |
---|
189 | elif category.startswith('schoolfee'): |
---|
190 | try: |
---|
191 | certificate = student['studycourse'].certificate |
---|
192 | p_item = certificate.code |
---|
193 | except (AttributeError, TypeError): |
---|
194 | return _('Study course data are incomplete.'), None |
---|
195 | if student.state == CLEARED or category == 'schoolfee_2': |
---|
196 | if student.is_foreigner: |
---|
197 | amount = getattr(certificate, 'school_fee_3', 0.0) |
---|
198 | else: |
---|
199 | amount = getattr(certificate, 'school_fee_1', 0.0) |
---|
200 | # Cut school fee by 50% |
---|
201 | if category in ('schoolfee_1', 'schoolfee_2'): |
---|
202 | amount = amount / 2 |
---|
203 | elif category == 'schoolfee_1': |
---|
204 | return _("Wrong state. Only students in state 'cleared' " |
---|
205 | "are allowed to pay by instalments."), None |
---|
206 | elif student.state == RETURNING: |
---|
207 | if student.is_postgrad and category == 'schoolfee_incl': |
---|
208 | return _("No additional fees required."), None |
---|
209 | if not student.father_name: |
---|
210 | return _("Personal data form is not properly filled."), None |
---|
211 | # In case of returning school fee payment the payment session |
---|
212 | # and level contain the values of the session the student |
---|
213 | # has paid for. |
---|
214 | p_session, p_level = self.getReturningData(student) |
---|
215 | try: |
---|
216 | academic_session = grok.getSite()[ |
---|
217 | 'configuration'][str(p_session)] |
---|
218 | except KeyError: |
---|
219 | return _(u'Session configuration object is not available.'), None |
---|
220 | if student.is_foreigner: |
---|
221 | amount = getattr(certificate, 'school_fee_4', 0.0) |
---|
222 | else: |
---|
223 | amount = getattr(certificate, 'school_fee_2', 0.0) |
---|
224 | else: |
---|
225 | return _('Wrong state.'), None |
---|
226 | if amount in (0.0, None): |
---|
227 | return _(u'Amount could not be determined.'), None |
---|
228 | # Add Student Union Fee and Welfare Assurance |
---|
229 | if category in ('schoolfee_incl', 'schoolfee_1'): |
---|
230 | amount += gateway_net_amt(academic_session.welfare_fee) + \ |
---|
231 | gateway_net_amt(academic_session.union_fee) |
---|
232 | # Add non-indigenous fee and session specific penalty fees |
---|
233 | if student.is_postgrad: |
---|
234 | amount += academic_session.penalty_pg |
---|
235 | if not student.lga.startswith('edo'): |
---|
236 | amount += 20000.0 |
---|
237 | else: |
---|
238 | amount += academic_session.penalty_ug |
---|
239 | if amount in (0.0, None): |
---|
240 | return _(u'Amount could not be determined.'), None |
---|
241 | |
---|
242 | # Create ticket. |
---|
243 | for key in student['payments'].keys(): |
---|
244 | ticket = student['payments'][key] |
---|
245 | if ticket.p_state == 'paid' and\ |
---|
246 | ticket.p_category == category and \ |
---|
247 | ticket.p_item == p_item and \ |
---|
248 | ticket.p_session == p_session: |
---|
249 | return _('This type of payment has already been made.'), None |
---|
250 | if self._isPaymentDisabled(p_session, category, student): |
---|
251 | return _('Payment temporarily disabled.'), None |
---|
252 | payment = createObject(u'waeup.StudentOnlinePayment') |
---|
253 | timestamp = ("%d" % int(time()*10000))[1:] |
---|
254 | payment.p_id = "p%s" % timestamp |
---|
255 | payment.p_category = category |
---|
256 | payment.p_item = p_item |
---|
257 | payment.p_session = p_session |
---|
258 | payment.p_level = p_level |
---|
259 | payment.p_current = p_current |
---|
260 | payment.amount_auth = amount |
---|
261 | return None, payment |
---|
262 | |
---|
263 | def _admissionText(self, student, portal_language): |
---|
264 | inst_name = grok.getSite()['configuration'].name |
---|
265 | entry_session = student['studycourse'].entry_session |
---|
266 | entry_session = academic_sessions_vocab.getTerm(entry_session).title |
---|
267 | text = trans(_( |
---|
268 | 'This is to inform you that you have been offered provisional' |
---|
269 | ' admission into ${a} for the ${b} academic session as follows:', |
---|
270 | mapping = {'a': inst_name, 'b': entry_session}), |
---|
271 | portal_language) |
---|
272 | return text |
---|
273 | |
---|
274 | def maxCredits(self, studylevel): |
---|
275 | """Return maximum credits. |
---|
276 | |
---|
277 | """ |
---|
278 | return 48 |
---|
279 | |
---|
280 | def getBedCoordinates(self, bedticket): |
---|
281 | """Return descriptive bed coordinates. |
---|
282 | This method can be used to customize the `display_coordinates` |
---|
283 | property method in order to display a |
---|
284 | customary description of the bed space. |
---|
285 | """ |
---|
286 | bc = bedticket.bed_coordinates.split(',') |
---|
287 | if len(bc) == 4: |
---|
288 | return bc[0] |
---|
289 | return bedticket.bed_coordinates |
---|
290 | |
---|
291 | def getAccommodationDetails(self, student): |
---|
292 | """Determine the accommodation data of a student. |
---|
293 | """ |
---|
294 | d = {} |
---|
295 | d['error'] = u'' |
---|
296 | hostels = grok.getSite()['hostels'] |
---|
297 | d['booking_session'] = hostels.accommodation_session |
---|
298 | d['allowed_states'] = hostels.accommodation_states |
---|
299 | d['startdate'] = hostels.startdate |
---|
300 | d['enddate'] = hostels.enddate |
---|
301 | d['expired'] = hostels.expired |
---|
302 | # Determine bed type |
---|
303 | bt = 'all' |
---|
304 | if student.sex == 'f': |
---|
305 | sex = 'female' |
---|
306 | else: |
---|
307 | sex = 'male' |
---|
308 | special_handling = 'regular' |
---|
309 | d['bt'] = u'%s_%s_%s' % (special_handling,sex,bt) |
---|
310 | return d |
---|
311 | |
---|
312 | # AAUE prefix |
---|
313 | STUDENT_ID_PREFIX = u'E' |
---|