source: main/waeup.uniben/trunk/src/waeup/uniben/applicants/utils.py @ 17532

Last change on this file since 17532 was 17366, checked in by Henrik Bettermann, 18 months ago

Show faculty and department title in elect box.

  • Property svn:keywords set to Id
File size: 7.8 KB
Line 
1## $Id: utils.py 17366 2023-03-27 21:26:16Z 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"""General helper functions and utilities for the application section.
19"""
20
21import grok
22from time import time
23from datetime import datetime
24from kofacustom.nigeria.applicants.utils import NigeriaApplicantsUtils
25from waeup.kofa.applicants.workflow import (INITIALIZED,
26    STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED)
27from waeup.uniben.applicants.interfaces import REGISTRATION_CATS, DESTINATION_COST
28from waeup.uniben.interfaces import MessageFactory as _
29
30class CustomApplicantsUtils(NigeriaApplicantsUtils):
31    """A collection of parameters and methods subject to customization.
32    """
33
34    ADDITIONAL_FILES = (
35                 ('Eligibility Form','eligibility'),
36                 ('Statement of Result','res_stat'),
37                 )
38
39    APP_TYPES_DICT = {
40        'pude': ['Post-UDE Screening', 'PUDE'],
41        'sandwich': ['Part-Time Degree in Education', 'SAND'],
42        'pt': ['Part-Time Degree Programmes', 'PTP'],
43        'ptext': ['Part-Time Degree Programmes (extended application)', 'PTP'],
44        'putme': ['Post-UTME Screening Exercise', 'PUTME'],
45        'app': ['General Studies', 'APP'],
46        'cest': ['Common Entry Screening Test', 'CEST'],
47        'ct': ['Certificate Programmes', 'CTP'],
48        'dp': ['Diploma Programmes', 'DPP'],
49        'dpft': ['Diploma Full-Time Programmes', 'DPP'],
50        'pg': ['Postgraduate Programmes (main advert)', 'PG'],
51        'pgcoe': ['CoE Programmes', 'PG'],
52        'pgn': ['NILS Postgraduate Programmes', 'PG'],
53        'pre': ['JUPEB Pre-Degree (Foundation) Studies', 'PRE'],
54        'cbt': ['UNIBEN CBT Practice Test', 'CBT'],
55        'ab': ['Asaba Programmes', 'ASA'],
56        'ak': ['Akoka Programmes', 'AKO'],
57        'akj': ['Akoka JUPEB', 'AKO'],
58        'ictwk': ['ICT Week Registration', 'ICT'],
59        'ase': ['Uniben Admission Screening Exercise', 'ASE'],
60        'asea': ['Uniben Admission Screening Exercise '
61                 '(1st supplementary advert)', 'ASE'],
62        'aseb': ['Uniben Admission Screening Exercise '
63                 '(2nd supplementary advert)', 'ASE'],
64        'spft': ['Special Full-Time Programmes', 'SP'],
65        'tscf': ['Transcript (without student record)', 'TRF'],
66        'tscs': ['Transcript (with student record)', 'TRS'],
67        'flc': ['French Language Centre', 'FR'],
68        'cdl': ['Centre For Distance Learning Programmes', 'CDL'],
69        }
70
71
72    SEPARATORS_DICT = {
73        'form.applicant_id': _(u'Base Data'),
74        'form.course1': _(u'Programmes/Courses Desired'),
75        'form.hq_type': _(u'Higher Education Record'),
76        'form.presently': _(u'Course or Programme Presently Attending'),
77        'form.nysc_year': _(u'NYSC Information'),
78        'form.employer': _(u'Employment History'),
79        'form.jamb_subjects': _(u'JAMB Data'),
80        'form.jamb_subjects_list': _(u'JAMB Data'),
81        'form.notice': _(u'Application Process Information'),
82        'form.pp_school': _(u'Post Primary School Qualification'),
83        'form.presently_inst': _(u'Presently attending a course or programme'),
84        'form.fst_sit_fname': _(u'Ordinary Level First Sitting Record'),
85        'form.scd_sit_fname': _(u'Ordinary Level Second Sitting Record'),
86        'form.referees': _(u'Referees'),
87        }
88
89
90    # Temporarily disabled
91    def xxx_getApplicantsStatistics(self, container):
92        state_stats = {INITIALIZED:0, STARTED:0, PAID:0, SUBMITTED:0,
93            ADMITTED:0, NOT_ADMITTED:0, CREATED:0}
94        faculty_keys = grok.getSite()['faculties'].keys()
95        fac_stats = dict([(i,0) for i in faculty_keys])
96        for key in container.keys():
97            state = container[key].state
98            state_stats[state] += 1
99            cert = getattr(container[key],'course1',None)
100            if  cert is not None and state == SUBMITTED:
101                faculty = cert.__parent__.__parent__.__parent__
102                fac_stats[faculty.__name__] += 1
103        return state_stats, fac_stats
104
105
106    def setPaymentDetails(self, container, payment, applicant):
107        """Set the payment data of an applicant.
108        In contrast to its `StudentsUtils` counterpart, the payment ticket
109        must exist and is an argument of this method.
110        """
111        timestamp = ("%d" % int(time()*10000))[1:]
112        if container.year:
113            session = str(container.year)
114            try:
115                session_config = grok.getSite()['configuration'][session]
116            except KeyError:
117                return _(u'Session configuration object is not available.')
118        payment.p_id = "p%s" % timestamp
119        payment.p_item = container.title
120        if container.year:
121            payment.p_session = container.year
122        else:
123            payment.p_session = datetime.now().year
124        payment.amount_auth = 0.0
125        if applicant.special:
126            if applicant.special_application:
127                fee_name = applicant.special_application + '_fee'
128                payment.amount_auth = getattr(session_config, fee_name, None)
129                payment.p_category = applicant.special_application
130            return
131        elif applicant.__parent__.prefix == 'ictwk':
132            payment.p_category = 'registration'
133            for cat in applicant.registration_cats:
134                payment.amount_auth += REGISTRATION_CATS[cat][1]
135            return
136        elif applicant.container_code.startswith('tsc'):
137            if not applicant.charge:
138                return _(u'No transcript charge selected.')
139            cost = DESTINATION_COST[applicant.charge][1]
140            payment.amount_auth = applicant.no_copies * cost
141            payment.p_category = 'transcript'
142            return
143        else:
144            payment.p_category = 'application'
145            container_fee = container.application_fee
146            if not container_fee:
147                return _('Amount could not be determined.')
148            payment.amount_auth = container_fee
149        return
150
151    def isPictureEditable(self, container):
152        """False if applicants are not allowed to edit uploaded pictures.
153        """
154        if container.code.startswith('ase'):
155            return False
156        if container.code.startswith('pude'):
157            return False
158        return container.with_picture
159
160    def sortCertificates(self, context, resultset):
161        """Sort already filtered certificates in `AppCatCertificateSource`.
162        """
163        resultlist = sorted(resultset, key=lambda
164            value: value.__parent__.__parent__.__parent__.code +
165            value.__parent__.__parent__.code +
166            value.code)
167        curr_course = context.course1
168        if curr_course is not None and curr_course not in resultlist:
169            resultlist = [curr_course,] + resultlist
170        return resultlist
171
172    def getCertTitle(self, context, value):
173        """Compose the titles in `AppCatCertificateSource`.
174        """
175        try: title = "%s / %s / %s (%s)" % (
176            value.__parent__.__parent__.__parent__.title,
177            value.__parent__.__parent__.title,
178            value.title, value.code)
179        except AttributeError:
180            title = "NA / %s (%s)" % (value.title, value.code)
181        return title
Note: See TracBrowser for help on using the repository browser.