source: main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py @ 14824

Last change on this file since 14824 was 14824, checked in by Henrik Bettermann, 7 years ago

Remove 'paid' from list.

  • Property svn:keywords set to Id
File size: 20.6 KB
RevLine 
[10298]1## $Id: browser.py 14824 2017-08-30 11:40:01Z 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"""UI components for basic applicants and related components.
19"""
20import grok
21import os
[13996]22from zope.component import getUtility, getAdapter
23from zope.i18n import translate
[14027]24from hurry.workflow.interfaces import IWorkflowState
[10298]25from waeup.kofa.interfaces import (
[13996]26    IExtFileStore, IFileStoreNameChooser, IKofaUtils)
[10298]27from zope.formlib.textwidgets import BytesDisplayWidget
28from waeup.kofa.utils.helpers import string_from_bytes, file_size
[13996]29from waeup.kofa.applicants.browser import (
30    ApplicantCheckStatusPage, ApplicantBaseDisplayFormPage)
[14027]31from waeup.kofa.applicants.workflow import STARTED, PAID
[13538]32from waeup.kofa.applicants.viewlets import PDFActionButton
[14460]33from waeup.kofa.applicants.interfaces import IApplicantRegisterUpdate
[13996]34from waeup.kofa.browser.layout import UtilityView
35from waeup.kofa.students.interfaces import IStudentsUtils
36from waeup.kofa.interfaces import IPDF
[13997]37from waeup.kofa.browser.viewlets import ManageActionButton
[10298]38from waeup.aaue.interfaces import MessageFactory as _
39from kofacustom.nigeria.applicants.browser import (
40    NigeriaApplicantDisplayFormPage,
41    NigeriaApplicantManageFormPage,
42    NigeriaApplicantEditFormPage,
43    NigeriaPDFApplicationSlip,
[10929]44    NigeriaApplicantRegistrationPage,
[11755]45    NigeriaExportPDFPaymentSlipPage,
[13545]46    )
47from kofacustom.nigeria.applicants.interfaces import OMIT_DISPLAY_FIELDS
[10298]48from waeup.aaue.applicants.interfaces import (
49    ICustomUGApplicant,
[13544]50    ICustomUGApplicantEdit,
[13996]51    ITranscriptApplicant,
[14304]52    ICertificateRequest,
[13996]53    ICustomApplicant
[11291]54    )
[10298]55
[13545]56UG_OMIT_FIELDS = (
57      'hq_type', 'hq_fname', 'hq_matric_no',
58      'hq_degree', 'hq_school', 'hq_session', 'hq_disc',
59      'hq_type2', 'hq_fname2', 'hq_matric_no2',
60      'hq_degree2', 'hq_school2', 'hq_session2', 'hq_disc2',
61      'hq_type3', 'hq_fname3', 'hq_matric_no3',
[13679]62      'hq_degree3', 'hq_school3', 'hq_session3', 'hq_disc3',
63      'nysc_year',
64      'nysc_location',
65      'nysc_lga',
66      'employer',
67      'emp_position',
68      'emp_start',
69      'emp_end',
70      'emp_reason',
71      'employer2',
72      'emp2_position',
73      'emp2_start',
74      'emp2_end',
75      'emp2_reason',
76      'former_matric',
[13545]77      )
[13546]78UG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + (
[13977]79    'jamb_subjects_list', 'master_sheet_number') + UG_OMIT_FIELDS
[13545]80UG_OMIT_PDF_FIELDS = UG_OMIT_DISPLAY_FIELDS + UG_OMIT_FIELDS + (
[14363]81      'alr_fname', 'alr_no', 'alr_date',
[13545]82      'alr_results', 'notice')
[13546]83UG_OMIT_MANAGE_FIELDS = (
84    'special_application','jamb_subjects_list',) + UG_OMIT_FIELDS
85UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + (
[13545]86    'student_id',
87    'notice',
88    'jamb_age',
89    'jamb_subjects',
90    'jamb_score',
91    'jamb_reg_number',
[13679]92    'aggregate',
[13977]93    'master_sheet_number',
[13996]94    'screening_venue',
95    'screening_score',
96    'screening_date'
[13679]97    )
[10298]98
[14209]99UDE_OMIT_FIELDS = (
100      'nysc_year',
101      'nysc_location',
102      'nysc_lga',
103      'employer',
104      'emp_position',
105      'emp_start',
106      'emp_end',
107      'emp_reason',
108      'employer2',
109      'emp2_position',
110      'emp2_start',
111      'emp2_end',
112      'emp2_reason',
113      'former_matric',
114      )
115UDE_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + (
116    'jamb_subjects_list', 'master_sheet_number') + UDE_OMIT_FIELDS
117UDE_OMIT_PDF_FIELDS = UDE_OMIT_DISPLAY_FIELDS + UDE_OMIT_FIELDS + (
[14363]118      'alr_fname', 'alr_no', 'alr_date',
[14209]119      'alr_results', 'notice')
120UDE_OMIT_MANAGE_FIELDS = (
121    'special_application','jamb_subjects_list',) + UDE_OMIT_FIELDS
122UDE_OMIT_EDIT_FIELDS = UDE_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + (
123    'student_id',
124    'notice',
125    'jamb_age',
126    'jamb_subjects',
127    'jamb_score',
128    'jamb_reg_number',
129    'aggregate',
130    'master_sheet_number',
131    'screening_venue',
132    'screening_score',
133    'screening_date'
134    )
135
[13545]136#UG_OMIT_PDF_FIELDS = tuple([
137#    element for element in UG_OMIT_PDF_FIELDS if not element == 'phone'])
[11291]138
[13545]139#UG_OMIT_PDF_FIELDS += (
140#      'reg_number','alr_fname', 'alr_no', 'alr_date',
141#      'alr_results', 'notice'
142#      )
[13538]143
[13545]144PG_OMIT_FIELDS = (
145    'fst_sit_fname',
146    'fst_sit_no',
147    'fst_sit_date',
148    'fst_sit_type',
149    'fst_sit_results',
150    'scd_sit_fname',
151    'scd_sit_no',
152    'scd_sit_date',
153    'scd_sit_type',
154    'scd_sit_results',
[13977]155    #'programme_type',
[13546]156    'jamb_age',
157    'jamb_subjects',
158    'jamb_score',
159    'jamb_reg_number',
160    'aggregate'
[13545]161    )
162PG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + (
163    'jamb_subjects_list',) + PG_OMIT_FIELDS
164PG_OMIT_PDF_FIELDS = PG_OMIT_DISPLAY_FIELDS + PG_OMIT_FIELDS + (
165      'reg_number','alr_fname', 'alr_no', 'alr_date',
[13679]166      'alr_results', 'notice',
167      'nysc_year',
168      'nysc_location',
169      'nysc_lga',
170      'former_matric',
171      )
[13545]172PG_OMIT_MANAGE_FIELDS = (
173    'special_application','jamb_subjects_list',) + PG_OMIT_FIELDS
[13546]174PG_OMIT_EDIT_FIELDS = PG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + (
[13545]175    'student_id',
176    'notice',
[13546]177    )
[13545]178
[13679]179PTEE_OMIT_FIELDS = (
180    'jamb_age',
181    'jamb_subjects',
182    'jamb_score',
183    'jamb_reg_number',
184    'aggregate'
185    )
186PTEE_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + (
187    'jamb_subjects_list',) + PTEE_OMIT_FIELDS
188PTEE_OMIT_PDF_FIELDS = PTEE_OMIT_DISPLAY_FIELDS + PTEE_OMIT_FIELDS + (
189      'reg_number','alr_fname', 'alr_no', 'alr_date',
190      'alr_results', 'notice',
191      'nysc_year',
192      'nysc_location',
193      'nysc_lga',
194      'employer',
195      'emp_position',
196      'emp_start',
197      'emp_end',
198      'emp_reason',
199      'employer2',
200      'emp2_position',
201      'emp2_start',
202      'emp2_end',
203      'emp2_reason',
204      'former_matric',
205    )
206PTEE_OMIT_MANAGE_FIELDS = (
207    'special_application','jamb_subjects_list',) + PTEE_OMIT_FIELDS
208PTEE_OMIT_EDIT_FIELDS = PTEE_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + (
209    'student_id',
210    'notice',
211    )
212
[14150]213UPDATE_OMIT_FIELDS = (
214    'firstname',
215    'middlename',
216    'lastname',
217    'sex',
218    'lga',
219    'course1',
220    )
221
[10298]222class CustomApplicantDisplayFormPage(NigeriaApplicantDisplayFormPage):
223    """A display view for applicant data.
224    """
225
226    @property
227    def form_fields(self):
[13538]228        if self.target is not None and self.target == 'trans':
[13544]229            form_fields = grok.AutoFields(ITranscriptApplicant).omit(
[14580]230                'locked', 'suspended')
[13544]231            form_fields['dispatch_address'].custom_widget = BytesDisplayWidget
232            form_fields['perm_address'].custom_widget = BytesDisplayWidget
233            return form_fields
[14304]234        if self.target is not None and self.target == 'cert':
235            form_fields = grok.AutoFields(ICertificateRequest).omit(
[14580]236                'locked', 'suspended')
[14304]237            form_fields['dispatch_address'].custom_widget = BytesDisplayWidget
238            form_fields['perm_address'].custom_widget = BytesDisplayWidget
239            return form_fields
[13538]240        # AAUE is using the same interface for all regular applications.
[11291]241        form_fields = grok.AutoFields(ICustomUGApplicant)
[13538]242        if self.target is not None and self.target.startswith('pg'):
243            for field in PG_OMIT_DISPLAY_FIELDS:
244                form_fields = form_fields.omit(field)
[14150]245        elif self.target is not None and self.target in ('ptee',):
[13679]246            for field in PTEE_OMIT_DISPLAY_FIELDS:
[10298]247                form_fields = form_fields.omit(field)
[14209]248        elif self.target is not None and self.target in ('ude',):
249            for field in UDE_OMIT_DISPLAY_FIELDS:
250                form_fields = form_fields.omit(field)
[10298]251        else:
252            for field in UG_OMIT_DISPLAY_FIELDS:
253                form_fields = form_fields.omit(field)
254        form_fields['perm_address'].custom_widget = BytesDisplayWidget
255        form_fields['notice'].custom_widget = BytesDisplayWidget
256        if not getattr(self.context, 'student_id'):
257            form_fields = form_fields.omit('student_id')
258        if not getattr(self.context, 'screening_score'):
259            form_fields = form_fields.omit('screening_score')
260        if not getattr(self.context, 'screening_venue'):
261            form_fields = form_fields.omit('screening_venue')
262        if not getattr(self.context, 'screening_date'):
263            form_fields = form_fields.omit('screening_date')
264        return form_fields
265
[14371]266    def getCourseAdmitted(self):
267        """Return link, title and code in html format to the certificate
268           admitted.
269        """
270        if self.layout.isApplicant():
271            return ''
272        course_admitted = self.context.course_admitted
273        if getattr(course_admitted, '__parent__',None):
274            url = self.url(course_admitted)
275            title = course_admitted.title
276            code = course_admitted.code
277            return '<a href="%s">%s - %s</a>' %(url,code,title)
278        return ''
279
[13538]280class CustomPDFActionButton(PDFActionButton):
281
282    @property
283    def target_url(self):
[13540]284        if self.context.state in ('initialized', 'started', 'paid') \
[14304]285            or self.context.special or self.view.target in ('trans', 'cert'):
[13540]286            return
287        return self.view.url(self.view.context, self.target)
[13538]288
289
[10298]290class CustomPDFApplicationSlip(NigeriaPDFApplicationSlip):
291
[10311]292    column_two_fields = ('applicant_id', 'reg_number',
293        'firstname', 'middlename', 'lastname', 'sex', 'date_of_birth')
[13679]294    #two_columns_design_fields = [
295    #    'fst_sit_fname', 'fst_sit_no', 'fst_sit_date',
296    #    'fst_sit_type', 'fst_sit_results',
297    #    'scd_sit_fname', 'scd_sit_no', 'scd_sit_date',
298    #    'scd_sit_type', 'scd_sit_results']
[10311]299
[14228]300
301    def _getCourseAdmittedLink(self, view):
302        return None
303
304    def _getDeptAndFaculty(self):
305        return [None, None]
306
[10301]307    @property
308    def note(self):
[14057]309        note = getattr(self.context.__parent__, 'application_slip_notice', None)
310        if note:
311            return '<br /><br />' + note
[10301]312        if self.context.sex == 'm':
313            pronoun = 'he'
314        else:
315            pronoun = 'she'
316        return '''
[10897]317The applicant has acknowledged that, if discovered at any time that %s does not possess
318any of the qualifications which %s claims %s has obtained, %s will be expelled from the
[14224]319University not be re-admitted for the same or any other programme, even if %s has
320upgraded previous qualifications or possess additional qualifications.
321
[10331]322''' % (
[10301]323    pronoun, pronoun, pronoun, pronoun, pronoun)
[10298]324
325    @property
326    def form_fields(self):
[13538]327        # AAUE is using the same interface for all regular applications.
[11291]328        form_fields = grok.AutoFields(ICustomUGApplicant)
[13538]329        if self.target is not None and self.target.startswith('pg'):
330            for field in PG_OMIT_PDF_FIELDS:
331                form_fields = form_fields.omit(field)
[14150]332        elif self.target is not None and self.target in ('ptee',):
[13679]333            for field in PTEE_OMIT_PDF_FIELDS:
[10298]334                form_fields = form_fields.omit(field)
[14209]335        elif self.target is not None and self.target in ('ude',):
336            for field in UDE_OMIT_PDF_FIELDS:
337                form_fields = form_fields.omit(field)
[10298]338        else:
339            for field in UG_OMIT_PDF_FIELDS:
340                form_fields = form_fields.omit(field)
341        if not getattr(self.context, 'student_id'):
342            form_fields = form_fields.omit('student_id')
343        if not getattr(self.context, 'screening_score'):
344            form_fields = form_fields.omit('screening_score')
345        if not getattr(self.context, 'screening_venue'):
346            form_fields = form_fields.omit('screening_venue')
347        if not getattr(self.context, 'screening_date'):
348            form_fields = form_fields.omit('screening_date')
349        return form_fields
350
351class CustomApplicantManageFormPage(NigeriaApplicantManageFormPage):
352    """A full edit view for applicant data.
353    """
354
355    @property
356    def form_fields(self):
[13538]357        if self.target is not None and self.target == 'trans':
[13544]358            form_fields = grok.AutoFields(ITranscriptApplicant)
[13538]359            form_fields['applicant_id'].for_display = True
360            return form_fields
[14304]361        if self.target is not None and self.target == 'cert':
362            form_fields = grok.AutoFields(ICertificateRequest)
363            form_fields['applicant_id'].for_display = True
364            return form_fields
[13538]365        # AAUE is using the same interface for all regular applications.
[11291]366        form_fields = grok.AutoFields(ICustomUGApplicant)
[13538]367        if self.target is not None and self.target.startswith('pg'):
368            for field in PG_OMIT_MANAGE_FIELDS:
369                form_fields = form_fields.omit(field)
[14150]370        elif self.target is not None and self.target in ('ptee',):
[13679]371            for field in PTEE_OMIT_MANAGE_FIELDS:
[10298]372                form_fields = form_fields.omit(field)
[14209]373        elif self.target is not None and self.target in ('ude',):
374            for field in UDE_OMIT_MANAGE_FIELDS:
375                form_fields = form_fields.omit(field)
[10298]376        else:
377            for field in UG_OMIT_MANAGE_FIELDS:
378                form_fields = form_fields.omit(field)
379        form_fields['student_id'].for_display = True
380        form_fields['applicant_id'].for_display = True
381        return form_fields
382
383class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage):
384    """An applicant-centered edit view for applicant data.
385    """
386
[14027]387    def unremovable(self, ticket):
388        return True
389
390    # AAUE applicants never see the 'Remove Selected Tickets' button.
[10298]391    @property
[14027]392    def display_actions(self):
393        # If the form is unlocked, applicants are allowed to save the form
[14029]394        # and remove unused tickets.
395        actions = [[_('Save')], []]
[14027]396        # Only in state started they can also add tickets.
[14822]397        if self.context.state == STARTED:
[14029]398            actions = [[_('Save')],
399                [_('Add online payment ticket')]]
[14027]400        # In state paid, they can submit the data and further add tickets
401        # if the application is special.
[14822]402        elif self.context.special and self.context.state == PAID:
[14027]403            actions = [[_('Save'), _('Finally Submit')],
[14029]404                [_('Add online payment ticket')]]
[14822]405        elif self.context.state == PAID:
[14029]406            actions = [[_('Save'), _('Finally Submit')], []]
[14027]407        return actions
408
409    @property
[10298]410    def form_fields(self):
[13538]411        if self.target is not None and self.target == 'trans':
[13544]412            form_fields = grok.AutoFields(ITranscriptApplicant).omit(
413                'locked', 'suspended')
[13538]414            form_fields['applicant_id'].for_display = True
[14472]415            form_fields['reg_number'].for_display = True
[13538]416            return form_fields
[14304]417        if self.target is not None and self.target == 'cert':
418            form_fields = grok.AutoFields(ICertificateRequest).omit(
419                'locked', 'suspended')
420            form_fields['applicant_id'].for_display = True
[14472]421            form_fields['reg_number'].for_display = True
[14696]422            # Additional omissions
423            if self.context.__parent__.code == 'cert5':
424                for field in ('firstname', 'middlename', 'lastname'):
425                    form_fields[field].for_display = True
[14304]426            return form_fields
[13538]427        # AAUE is using the same interface for all regular applications.
[11291]428        form_fields = grok.AutoFields(ICustomUGApplicantEdit)
[13538]429        if self.target is not None and self.target.startswith('pg'):
430            for field in PG_OMIT_EDIT_FIELDS:
431                form_fields = form_fields.omit(field)
[14150]432        elif self.target is not None and self.target in ('ptee',):
[13679]433            for field in PTEE_OMIT_EDIT_FIELDS:
[10298]434                form_fields = form_fields.omit(field)
[14209]435        elif self.target is not None and self.target in ('ude',):
436            for field in UDE_OMIT_EDIT_FIELDS:
437                form_fields = form_fields.omit(field)
[10298]438        else:
439            for field in UG_OMIT_EDIT_FIELDS:
440                form_fields = form_fields.omit(field)
[14150]441        # Additional omissions
[14696]442        if self.target is not None and self.target in ('ude', 'utme'):
[14150]443            for field in UPDATE_OMIT_FIELDS:
444                form_fields[field].for_display = True
[10298]445        form_fields['applicant_id'].for_display = True
446        form_fields['reg_number'].for_display = True
447        return form_fields
[10929]448
449class CustomApplicantRegistrationPage(NigeriaApplicantRegistrationPage):
450    """Captcha'd registration page for applicants.
451    """
452
[14460]453    @property
454    def form_fields(self):
455        form_fields = None
456        if self.context.mode == 'update':
457            form_fields = grok.AutoFields(IApplicantRegisterUpdate).select(
458                'lastname','reg_number','email')
[14465]459            target = getattr(self.context, 'prefix', None)
[14460]460            if target in ('trans', 'cert'):
461                form_fields.get('reg_number').field.title = u'Matriculation Number'
462        else: #if self.context.mode == 'create':
463            form_fields = grok.AutoFields(ICustomUGApplicantEdit).select(
464                'firstname', 'middlename', 'lastname', 'email', 'phone')
465        return form_fields
466
[10929]467    def _redirect(self, email, password, applicant_id):
468        # Forward email and credentials to landing page.
469        self.redirect(self.url(self.context, 'registration_complete',
470            data = dict(email=email, password=password,
471            applicant_id=applicant_id)))
[11755]472        return
473
[14579]474    @property
475    def _postfix(self):
476        """Alumni records have to be imported into several containers.
477        Therefore a string must be added to their registration number
478        to make it unique.
479        """
480        if self.context.prefix in ('trans', 'cert'):
481            return self.context.code
482        return ''
483
[11755]484class CustomExportPDFPaymentSlipPage(NigeriaExportPDFPaymentSlipPage):
485
486    @property
487    def payment_slip_download_warning(self):
[13422]488        return ''
489
490class CustomApplicantCheckStatusPage(ApplicantCheckStatusPage):
491    """Captcha'd status checking page for applicants.
492    """
493    grok.template('applicantcheckstatus')
[13996]494
[14822]495class ScreeningInvitationActionButton(ManageActionButton):
[13997]496    grok.order(8) # This button should always be the last one.
497    grok.context(ICustomApplicant)
498    grok.view(CustomApplicantDisplayFormPage)
499    grok.require('waeup.viewApplication')
500    icon = 'actionicon_pdf.png'
501    text = _('Download screening invitation letter')
502    target = 'screening_invitation.pdf'
[13996]503
[13997]504    @property
505    def target_url(self):
[14822]506        if not self.context.screening_date or not self.context.state in (
[14824]507            'submitted', 'admitted', 'created'):
[13997]508            return ''
509        return self.view.url(self.view.context, self.target)
510
[13996]511class ExportScreeningInvitationLetter(UtilityView, grok.View):
512    """Deliver a slip with only screening data.
513    This form page is available only in AAUE.
514    """
[13997]515    grok.context(ICustomApplicant)
[13996]516    grok.name('screening_invitation.pdf')
517    grok.require('waeup.viewApplication')
518    prefix = 'form'
519
520    label = u'Screening Invitation Letter'
521
522    form_fields = []
523
524    @property
525    def note(self):
526        if self.context.screening_date:
[13999]527            year = self.context.__parent__.year
528            session = '%s/%s' % (year, year + 1)
529            sdate = self.context.screening_date
530            stime = ''
531            if '@' in self.context.screening_date:
532                sdate = self.context.screening_date.split('@')[0].strip()
533                stime = self.context.screening_date.split('@')[1].strip()
[13996]534            return """
535<br /><br /><br /><br /><font size='12'>
536Dear %s,
537<br /><br />
[13999]538You are invited to the Ambrose Alli University %s Admissions Screening Exercise.
[13996]539<br /><br />
[13999]540<strong>Date: %s
[13996]541<br /><br />
[13999]542Time: %s
543<br /><br />
[13997]544Venue: %s
545</strong>
[13996]546<br /><br />
[14015]547Please bring this letter of invitation and the downloaded application form along with you on your screening date.
548<br /><br />
549You are expected to be available 30 minutes before the commencement of your Screening.
[13996]550</font>
551
[13999]552""" % (
553       self.context.display_fullname,
554       session,
555       sdate,
556       stime,
[13996]557       self.context.screening_venue)
558        return
559
560    @property
561    def title(self):
562        return None
563
564    def update(self):
[14822]565        if not self.context.screening_date or not self.context.state in (
[14824]566            'submitted', 'admitted', 'created'):
[13996]567            self.flash(_('Forbidden'), type="warning")
568            self.redirect(self.url(self.context))
569
570    def render(self):
571        applicantview = ApplicantBaseDisplayFormPage(self.context, self.request)
572        students_utils = getUtility(IStudentsUtils)
573        return students_utils.renderPDF(self,'screening_data.pdf',
[14015]574            self.context, applicantview, note=self.note)
Note: See TracBrowser for help on using the repository browser.