source: WAeUP_SRP/base/skins/waeup_student/clearance_edit.py @ 2675

Last change on this file since 2675 was 2673, checked in by Henrik Bettermann, 18 years ago

reenable scan upload checking

  • Property svn:keywords set to Id
File size: 5.8 KB
RevLine 
[1860]1## Script (Python) "clearance_edit"
[1107]2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=REQUEST, acknowledge=None
8##title=
[805]9# $Id: clearance_edit.py 2673 2007-11-16 08:18:48Z henrik $
[788]10"""
11"""
12wftool = context.portal_workflow
13from urllib import urlencode
14from Products.CPSDocument.utils import getFormUidUrlArg
15import DateTime
16current = DateTime.DateTime()
[1016]17import logging
[1571]18logger = logging.getLogger('Skins.clearance_edit')
[1098]19request = REQUEST
[788]20
[885]21cpsdocument_edit_button = REQUEST.has_key('cpsdocument_edit_button')
22cpsdocument_edit_and_view_button = REQUEST.has_key('cpsdocument_edit_and_view_button')
23clear_and_validate_button = REQUEST.has_key('clear_and_validate_button')
24reject_clearance_button = REQUEST.has_key('reject_clearance_button')
[1098]25result_edit_button = REQUEST.has_key('result_edit_button')
[893]26
[788]27# Until ajax posts directly to its own script...
28##if 'ajax_edit' in REQUEST.form:
29##    return context.cpsdocument_edit_ajax(REQUEST, cluster=cluster)
30
31# Validate the document and write it if it's valid
32# (We don't call getEditableContent here, validate does it when needed.)
[832]33wftool = context.portal_workflow
[1073]34info = context.getClearanceInfo()
[788]35
[1036]36#'Sorry, you are not allowed to access this page!'
37if info == None:
[2364]38    return REQUEST.RESPONSE.redirect(context.standard_error_message())
[788]39student = info['student']
[1098]40#app = info['app']
41#app_doc = info['app_doc']
[788]42clear = info['clear']
43clear_doc = info['clear_doc']
[1016]44student_id = info['id']
45member_id = str(context.portal_membership.getAuthenticatedMember())
[1098]46result_widgets = ('fst_sit_results',
47                  'scd_sit_results',
48                  'alr_results',
49                  )
50required_scans = ('fst_sit_scan',
[1217]51#                 'jamb_slip',
[1101]52                  'ref_let',
[1098]53                  'acc_let'
[1860]54                 )
[1098]55form = request.form
56psm = ""
57args = {}
58action = "/external_clearance_edit_form"
[1860]59clearance_closed = False
60
[1098]61if context.isStudent():
62    action = "/clearance_edit_form"
[1860]63    if info['clear_review_state'] == 'closed':
64        clearance_closed = True
[832]65
[1860]66if not clearance_closed:
67    is_valid, ds = clear_doc.validate(request=REQUEST,
[788]68                                schema_id = 'student_clearance',
[885]69                                layout_id = 'student_clearance',
[788]70                                proxy=clear,
[2373]71                                use_session=False)
[1839]72if clear_and_validate_button and info['review_state'] == "clearance_requested":
73    logger.info('%s cleared %s' % (member_id,student_id ))
74    #from Products.zdb import set_trace
75    #set_trace()
[2670]76    clear_doc.edit(mapping = {'cleared_date': current,})
[1839]77    wftool.doActionFor(info['student'],'clear_and_validate')
[2672]78
79
80    if clear_doc.firstname and clear_doc.lastname:
81        if info['per_review_state'] != 'opened':
82            wftool.doActionFor(info['per'],'open')
83        per_doc = info['per'].getContent()
84        per_doc.edit(mapping = {'firstname': clear_doc.firstname, 'middlename': clear_doc.middlename, 'lastname': clear_doc.lastname,})
85
[2013]86    psm = "Clearance and eligibility record is validated and student is cleared!"
[1839]87elif clear_and_validate_button and info['review_state'] == "cleared_and_validated":
88    psm = "This student is already cleared!"
89elif reject_clearance_button:
90    logger.info('%s rejected clearance for %s' % (member_id,student_id ))
[2491]91    try:
92        wftool.doActionFor(info['clear'],'open')
93    except:
94        return
[1839]95    wftool.doActionFor(info['student'],'reject_clearance')
96    action = "/external_contact_student_form"
97    psm = "Student's clearance request has been rejected! Please fill and submit the form below!"
98    subject = "Clearance request rejected"
99    args['subject'] = subject
100    args['continue'] = 'external_clearance_edit_form'
[1860]101elif clearance_closed:
102    action = "/clearance_view"
[1862]103    logger.info('%s tried to edit closed clearance object of %s' % (member_id,student_id ))
[1839]104elif is_valid:
[1098]105    if cpsdocument_edit_button or result_edit_button:
[891]106        psm = "Content changed!"
[1996]107        logger.info('%s edited clearance object of %s' % (member_id,student_id ))
[851]108    elif cpsdocument_edit_and_view_button:
[1016]109        if acknowledge and info['review_state'] == "clearance_pin_entered":
[2364]110            files = context.waeup_tool.picturesList()
111            req_found = [scan for scan in required_scans if scan in files]
112            birth_found = "age_dec" in files or "birth_certificate" in files
[2673]113            if not req_found or not birth_found:
114                logger.info('%s requested clearance with documents missing' % (student_id))
115                psm = "You have not uploaded all necessary documents to request clearance!"
116            elif not clear_doc.firstname or not clear_doc.lastname:
[2670]117                logger.info('%s requested clearance without confirming name' % (student_id))
[2672]118                psm = "Please fill the name fields! First and last name are required. "
[1098]119            else:
[1571]120                logger.info('%s requested clearance' % (student_id))
[2670]121                clear_doc.edit(mapping = {'request_date': current,})
[1098]122                wftool.doActionFor(info['clear'],'close')
123                wftool.doActionFor(info['student'],'request_clearance',dest_container=1)
124                psm = "You successfully requested clearance!"
125                if context.isStudent():
126                    action = "/clearance_view"
[1016]127        elif acknowledge and info['review_state'] != "clearance_pin_entered":
[1571]128            logger.info('%s repeatedly requested clearance' % (student_id))
[1017]129            psm = "You have already requested clearance!"
[893]130        else:
131            psm = "You must tick the acknowledgement check box before submission!"
[851]132else:
[891]133    psm = "Please correct your errors!"
134    args = getFormUidUrlArg(REQUEST)
[1996]135    logger.info('%s got error when editing the clearance object of %s' % (member_id,student_id))
[891]136
[851]137args['portal_status_message'] = psm
[891]138url = clear.absolute_url() + action + '?' + urlencode(args)
[1575]139return REQUEST.RESPONSE.redirect(url)
[1106]140
Note: See TracBrowser for help on using the repository browser.