source: main/waeup.futminna/trunk/src/waeup/futminna/students/utils.py @ 9244

Last change on this file since 9244 was 9244, checked in by Henrik Bettermann, 12 years ago

Configure setPaymentDetails, and add some basic tests.

  • Property svn:keywords set to Id
File size: 5.5 KB
Line 
1## $Id: utils.py 9244 2012-09-27 10:19:14Z 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##
18import grok
19from time import time
20from zope.component import createObject
21from waeup.kofa.interfaces import CLEARED, RETURNING, PAID
22from kofacustom.nigeria.students.utils import NigeriaStudentsUtils
23from waeup.kofa.accesscodes import create_accesscode
24from waeup.futminna.interfaces import MessageFactory as _
25
26class 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        p_item = u''
57        amount = 0.0
58        if previous_session:
59            return _('Previous session payment not yet implemented.'), None
60        p_session = student['studycourse'].current_session
61        p_level = student['studycourse'].current_level
62        p_current = True
63        session = str(p_session)
64        try:
65            academic_session = grok.getSite()['configuration'][session]
66        except KeyError:
67            return _(u'Session configuration object is not available.'), None
68        if category == 'schoolfee':
69            try:
70                certificate = student['studycourse'].certificate
71                p_item = certificate.code
72            except (AttributeError, TypeError):
73                return _('Study course data are incomplete.'), None
74            if student.current_mode.endswith('_ft'):
75                # fresh remedial
76                if student.current_level == 10 and student.state == CLEARED:
77                    if student['studycourse'].entry_mode == 'rmd_ft':
78                        amount = 80200.0
79                    else:
80                        amount = 74200.0
81
82                # fresh
83                elif student.state == CLEARED:
84                    if student.current_mode == 'jm_ft':
85                        amount = 72700.0
86                    elif student.is_foreigner:
87                        amount = 131500.0
88                    else:
89                        amount = 37000.0 # School Fee reduced by 8000
90                # returning
91                elif student.state == RETURNING:
92                    if student.current_mode == 'jm_ft':
93                        amount = 37000.0
94                    elif student.is_foreigner:
95                        amount = 109500.0
96                    else:
97                        amount = 20000.0
98                else:
99                    amount = 0.0
100        elif category == 'clearance':
101            try:
102                p_item = student['studycourse'].certificate.code
103            except (AttributeError, TypeError):
104                return _('Study course data are incomplete.'), None
105            if student.faccode in ['EET','ICT'] or student.depcode in ['ARC']:
106                amount = 25000.0
107            else:
108                amount = 20000.0
109        elif category == 'bed_allocation':
110            p_item = self.getAccommodationDetails(student)['bt']
111            amount = academic_session.booking_fee
112        if amount in (0.0, None):
113            return _('Amount could not be determined.'), None
114        for key in student['payments'].keys():
115            ticket = student['payments'][key]
116            if ticket.p_state == 'paid' and\
117               ticket.p_category == category and \
118               ticket.p_item == p_item and \
119               ticket.p_session == p_session:
120                  return _('This type of payment has already been made.'), None
121        payment = createObject(u'waeup.StudentOnlinePayment')
122        timestamp = ("%d" % int(time()*10000))[1:]
123        payment.p_id = "p%s" % timestamp
124        payment.p_category = category
125        payment.p_item = p_item
126        payment.p_session = p_session
127        payment.p_level = p_level
128        payment.p_current = p_current
129        payment.amount_auth = amount
130        return None, payment
131
132
133    # FUTMinna prefix
134    STUDENT_ID_PREFIX = u'M'
Note: See TracBrowser for help on using the repository browser.