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

Last change on this file since 2363 was 2363, checked in by joachim, 17 years ago

new function picturesExist in waeup_tool used in clearance_edit

  • Property svn:keywords set to Id
File size: 5.4 KB
Line 
1## Script (Python) "clearance_edit"
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=
9# $Id: clearance_edit.py 2363 2007-10-15 12:04:52Z joachim $
10"""
11"""
12wftool = context.portal_workflow
13from urllib import urlencode
14from Products.CPSDocument.utils import getFormUidUrlArg
15import DateTime
16current = DateTime.DateTime()
17import logging
18logger = logging.getLogger('Skins.clearance_edit')
19request = REQUEST
20
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')
25result_edit_button = REQUEST.has_key('result_edit_button')
26
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.)
33wftool = context.portal_workflow
34info = context.getClearanceInfo()
35
36#'Sorry, you are not allowed to access this page!'
37if info == None:
38  return REQUEST.RESPONSE.redirect(context.standard_error_message())
39student = info['student']
40#app = info['app']
41#app_doc = info['app_doc']
42clear = info['clear']
43clear_doc = info['clear_doc']
44student_id = info['id']
45member_id = str(context.portal_membership.getAuthenticatedMember())
46result_widgets = ('fst_sit_results',
47                  'scd_sit_results',
48                  'alr_results',
49                  )
50required_scans = ('fst_sit_scan',
51                  'age_dec',
52                  'birth_certificate',
53#                 'jamb_slip',
54                  'ref_let',
55                  'acc_let'
56                 )
57form = request.form
58psm = ""
59args = {}
60action = "/external_clearance_edit_form"
61clearance_closed = False
62
63if context.isStudent():
64    action = "/clearance_edit_form"
65    if info['clear_review_state'] == 'closed':
66        clearance_closed = True
67
68if not clearance_closed:
69    is_valid, ds = clear_doc.validate(request=REQUEST,
70                                schema_id = 'student_clearance',
71                                layout_id = 'student_clearance',
72                                proxy=clear,
73                                use_session=True)
74if clear_and_validate_button and info['review_state'] == "clearance_requested":
75    logger.info('%s cleared %s' % (member_id,student_id ))
76    #from Products.zdb import set_trace
77    #set_trace()
78    info['clear_doc'].edit(mapping = {'cleared_date': current,})
79    wftool.doActionFor(info['student'],'clear_and_validate')
80    psm = "Clearance and eligibility record is validated and student is cleared!"
81elif clear_and_validate_button and info['review_state'] == "cleared_and_validated":
82    psm = "This student is already cleared!"
83elif reject_clearance_button:
84    logger.info('%s rejected clearance for %s' % (member_id,student_id ))
85    wftool.doActionFor(info['clear'],'open')
86    wftool.doActionFor(info['student'],'reject_clearance')
87    action = "/external_contact_student_form"
88    psm = "Student's clearance request has been rejected! Please fill and submit the form below!"
89    subject = "Clearance request rejected"
90    args['subject'] = subject
91    args['continue'] = 'external_clearance_edit_form'
92elif clearance_closed:
93    action = "/clearance_view"
94    logger.info('%s tried to edit closed clearance object of %s' % (member_id,student_id ))
95elif is_valid:
96    if cpsdocument_edit_button or result_edit_button:
97        psm = "Content changed!"
98        logger.info('%s edited clearance object of %s' % (member_id,student_id ))
99
100    elif cpsdocument_edit_and_view_button:
101        if acknowledge and info['review_state'] == "clearance_pin_entered":
102            missing = False
103            #files = clear_doc.objectIds()
104            # for scan in required_scans:
105            #     if scan not in files:
106            #         missing = True
107            #         break
108            # if not missing:
109            #     if not "age_dec" in files and not "birth_certificate" in files:
110            #         missing = True
111            if not context.waeup_tool.picturesExist(required_scans):
112                logger.info('%s requested clearance with documents missing' % (student_id))
113                psm = "You have not uploaded all necessary documents to request clearance!"
114            else:
115                logger.info('%s requested clearance' % (student_id))
116                info['clear_doc'].edit(mapping = {'request_date': current,})
117                wftool.doActionFor(info['clear'],'close')
118                wftool.doActionFor(info['student'],'request_clearance',dest_container=1)
119                psm = "You successfully requested clearance!"
120                if context.isStudent():
121                    action = "/clearance_view"
122        elif acknowledge and info['review_state'] != "clearance_pin_entered":
123            logger.info('%s repeatedly requested clearance' % (student_id))
124            psm = "You have already requested clearance!"
125        else:
126            psm = "You must tick the acknowledgement check box before submission!"
127else:
128    psm = "Please correct your errors!"
129    args = getFormUidUrlArg(REQUEST)
130    logger.info('%s got error when editing the clearance object of %s' % (member_id,student_id))
131
132args['portal_status_message'] = psm
133url = clear.absolute_url() + action + '?' + urlencode(args)
134return REQUEST.RESPONSE.redirect(url)
135
Note: See TracBrowser for help on using the repository browser.