1 | ## $Id: utils.py 9169 2012-09-10 11:05:07Z uli $ |
---|
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 | """General helper functions and utilities for the application section. |
---|
19 | """ |
---|
20 | |
---|
21 | from time import time |
---|
22 | import grok |
---|
23 | from zope.component import getUtility |
---|
24 | from zope.catalog.interfaces import ICatalog |
---|
25 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
26 | from waeup.kofa.applicants.interfaces import IApplicantsUtils |
---|
27 | from waeup.kofa.applicants.workflow import (INITIALIZED, |
---|
28 | STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED) |
---|
29 | |
---|
30 | class ApplicantsUtils(grok.GlobalUtility): |
---|
31 | """A collection of parameters and methods subject to customization. |
---|
32 | """ |
---|
33 | grok.implements(IApplicantsUtils) |
---|
34 | |
---|
35 | APP_TYPES_DICT = { |
---|
36 | 'app': ['General Studies', 'APP'], |
---|
37 | } |
---|
38 | |
---|
39 | SEPARATORS_DICT = { |
---|
40 | 'form.course1': _(u'Desired Study Courses'), |
---|
41 | 'form.student_id': _(u'Process Data'), |
---|
42 | } |
---|
43 | |
---|
44 | def setPaymentDetails(self, container, payment): |
---|
45 | """Set the payment data of an applicant. |
---|
46 | """ |
---|
47 | timestamp = ("%d" % int(time()*10000))[1:] |
---|
48 | container_fee = container.application_fee |
---|
49 | if container_fee: |
---|
50 | payment.amount_auth = container_fee |
---|
51 | else: |
---|
52 | session = str(container.year) |
---|
53 | try: |
---|
54 | session_config = grok.getSite()['configuration'][session] |
---|
55 | except KeyError: |
---|
56 | return _(u'Session configuration object is not available.') |
---|
57 | payment.amount_auth = session_config.application_fee |
---|
58 | payment.p_id = "p%s" % timestamp |
---|
59 | payment.p_item = container.title |
---|
60 | payment.p_session = container.year |
---|
61 | payment.p_category = 'application' |
---|
62 | return None |
---|
63 | |
---|
64 | def getApplicantsStatistics(self, container): |
---|
65 | state_stats = {INITIALIZED:0, STARTED:0, PAID:0, SUBMITTED:0, |
---|
66 | ADMITTED:0, NOT_ADMITTED:0, CREATED:0} |
---|
67 | cat = getUtility(ICatalog, name='applicants_catalog') |
---|
68 | code = container.code |
---|
69 | year = int(code[-4:]) |
---|
70 | target = code[:-4] |
---|
71 | mxcode = target + str(year + 1) |
---|
72 | for state in state_stats: |
---|
73 | state_stats[state] = len(cat.searchResults( |
---|
74 | state=(state, state), |
---|
75 | applicant_id=(code, mxcode))) |
---|
76 | return state_stats, None |
---|