1 | ## $Id: utils.py 9155 2012-09-04 07:09:29Z 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 CLEARED, RETURNING, PAID |
---|
22 | from kofacustom.nigeria.students.utils import NigeriaStudentsUtils |
---|
23 | from waeup.kofa.accesscodes import create_accesscode |
---|
24 | from waeup.futminna.interfaces import MessageFactory as _ |
---|
25 | |
---|
26 | class CustomStudentsUtils(NigeriaStudentsUtils): |
---|
27 | """A collection of customized methods. |
---|
28 | |
---|
29 | """ |
---|
30 | |
---|
31 | def getReturningData(self, student): |
---|
32 | """ This method defines what happens after school fee payment |
---|
33 | of returning students depending on the student's senate verdict. |
---|
34 | """ |
---|
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 |
---|
47 | new_session = student['studycourse'].current_session + 1 |
---|
48 | return new_session, new_level |
---|
49 | |
---|
50 | def setPaymentDetails(self, category, student, |
---|
51 | previous_session=None, previous_level=None): |
---|
52 | """Create Payment object and set the payment data of a student for |
---|
53 | the payment category specified. |
---|
54 | |
---|
55 | """ |
---|
56 | return _(u'Payment components not yet configured.'), None |
---|
57 | |
---|
58 | |
---|
59 | # FUTMinna prefix |
---|
60 | STUDENT_ID_PREFIX = u'M' |
---|