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

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

Reorganize payment customizatiom. Tests will follow.

Let also applicants pay via eTranzact. Show transaction code on display view (slip view will follow).

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: utils.py 8247 2012-04-22 12:56:07Z 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 sys
22import grok
23from hurry.workflow.interfaces import IWorkflowInfo, InvalidTransitionError
24from waeup.kofa.applicants.utils import ApplicantsUtils
25from waeup.uniben.interfaces import MessageFactory as _
26
27
28def actions_after_applicant_payment(applicant, view):
29    wf_info = IWorkflowInfo(applicant)
30    try:
31        wf_info.fireTransition('pay')
32    except InvalidTransitionError:
33        view.flash('Error: %s' % sys.exc_info()[1])
34        return
35
36class ApplicantsUtils(ApplicantsUtils):
37    """A collection of parameters and methods subject to customization.
38    """
39
40    APP_TYPES_DICT = {
41        'pude': ['Post UDE Screening', 'PUDE'],
42        'prence': ['Pre-NCE Programme', 'PRE'],
43        'sandwich': ['Part Time Degree in Education', 'SAND'],
44        'pt': ['Part-Time Degree Programmes', 'PTP'],
45        'pume': ['Post UME Screening Test', 'PUME'],
46        'app': ['General Studies', 'APP'],
47        'cest': ['Common Entry Screening Test', 'CEST'],
48        'ct': ['Certificate Programmes', 'CTP'],
49        'dp': ['Diploma Programmes', 'DPP'],
50        'pce': ['PCE Screening', 'PCE'],
51        'pgft': ['Postgraduate Full-Time Programmes', 'PG'],
52        'pgpt': ['Postgraduate Part-Time Programmes', 'PG']
53        }
54
55    SEPARATORS_DICT = {
56        'form.applicant_id': _(u'Base Data'),
57        'form.course1': _(u'Programmes/Courses Desired'),
58        'form.hq_type': _(u'Higher Education Record'),
59        'form.presently': _(u'Course or Programme Presently Attending'),
60        'form.nysc_year': _(u'NYSC Information'),
61        'form.employer': _(u'Employment History'),
62        'form.notice': _(u'Application Process Information'),
63        'form.pp_school': _(u'Post Primary School Qualification'),
64        'form.presently_inst': _(u'Presently attending a course or programme'),
65        }
Note: See TracBrowser for help on using the repository browser.