source: WAeUP_SRP/base/skins/waeup_student/deactivate_students.py @ 2601

Last change on this file since 2601 was 2601, checked in by Henrik Bettermann, 17 years ago

close also objects in state created

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1## Script (Python) "deactivate_students"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=REQUEST
8##title=
9##
10# $Id: deactivate_students.py 2601 2007-11-08 22:37:27Z henrik $
11"""
12remove a list of students
13"""
14try:
15    from Products.zdb import set_trace
16except:
17    def set_trace():
18        pass
19
20import logging
21logger = logging.getLogger('Skins.deactivate_students')
22from Products.AdvancedQuery import Eq, Between, Le,In
23#aq_portal = context.portal_catalog_real.evalAdvancedQuery
24aq_students = context.students_catalog.evalAdvancedQuery
25students_folder = context.portal_url.getPortalObject().campus.students
26stdir = context.portal_directories.students
27mtool = context.portal_membership
28member = mtool.getAuthenticatedMember()
29rget = REQUEST.form.get
30info = {}
31info['member'] = member
32info['is_so'] = context.isSectionOfficer()
33ids = info['choosen_ids'] = rget('ids',[])
34search_list = rget('search_string','')
35delete = rget('delete',None)
36info['search_string'] = search_list
37student_ids = search_list.split()
38students = []
39psm = ''
40deleted_list = []
41if delete:
42    if not ids:
43        psm = "Nothing selected!"
44    else:
45        for student_id in ids:
46            student = getattr(students_folder,student_id,None)
47            if student is not None:
48                for object in student.objectValues():
49                    if context.portal_workflow.getInfoFor(object,'review_state',None) in ('open','created'):
50                        context.portal_workflow.doActionFor(object,'close')
51                context.portal_workflow.doActionFor(student,'deactivate')
52                logger.info("%s deactivated student  %s" % (member,student_id))
53                deleted_list.append(student_id)
54            else:
55                logger.info("Student object %s not found" % (student_id))
56                continue
57        psm = "%s deactivated" % ' '.join(deleted_list)
58
59if student_ids:
60    brains = aq_students(In('id',student_ids) | In('matric_no', student_ids))
61    brains_dict = {}
62    if brains:
63        for b in brains:
64            if b.id in student_ids:
65                brains_dict[b.id] = b
66            elif b.matric_no in student_ids:
67                brains_dict[b.matric_no] = b
68    for student_id in student_ids:
69        student = {}
70        student['deleted'] = delete and student_id in ids
71        if student_id in brains_dict.keys():
72            brain = brains_dict[student_id]
73            student['id'] = brain.id
74            student['review_state'] = brain.review_state
75            student['jamb_reg_no'] = brain.jamb_reg_no
76            student['name'] = brain.name
77            student['matric_no'] = brain.matric_no
78            if brain.review_state == "deactivated":
79                student['found'] = False
80            else:
81                student['found'] = True
82        else:
83            student['found'] = False
84            student['id'] = student_id
85            student['jamb_reg_no'] = ""
86            student['name'] = "not found"
87            student['matric_no'] = ''
88        student['show_checkbox'] = not student['deleted'] and student['found']
89        students.append(student)
90
91allowed = students_folder.isSectionOfficer()
92
93return context.deactivate_students_form(info = info,
94                                    students = students,
95                                    allowed = allowed,
96                                    psm = psm,
97                                    )
Note: See TracBrowser for help on using the repository browser.