source: WAeUP_SRP/trunk/skins/waeup_pins/search_pins.py @ 4558

Last change on this file since 4558 was 4203, checked in by Henrik Bettermann, 15 years ago

display correct id

File size: 5.5 KB
Line 
1## Script (Python) "search_pins"
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: search_students.py 911 2006-11-20 15:11:29Z henrik $
11"""
12list Students for ClearanceOfficers
13"""
14try:
15    from Products.zdb import set_trace
16except:
17    def set_trace():
18        pass
19
20request = REQUEST
21wftool = context.portal_workflow
22mtool = context.portal_membership
23member = mtool.getAuthenticatedMember()
24roles = member.getRolesInContext(context)
25pincat = context.portal_pins
26students = context.portal_url.getPortalObject().campus.students
27def check_hostel_pins(term):
28    items = pincat(prefix_batch = term)
29    not_found = []
30    #from Products.zdb import set_trace;set_trace()
31    for item in items:
32        if item.student == '':
33            continue
34        student = getattr(students,item.student,None)
35        if student is None:
36            not_found.append(item)
37        elif not "accommodation_2006" in student.objectIds():
38            not_found.append(item)
39        else:
40            acco = student.accommodation_2006
41            acco_doc = acco.getContent()
42            pin = "".join(str(acco_doc.acco_res_sc_pin).split('-'))
43            if pin != item.pin:
44                not_found.append(item)
45    return not_found
46
47def set_used_pins(items, from_cat=False):
48    l = []
49    for i in items:
50        item = {}
51        if from_cat:
52            sno = i.student
53            prefix = i.prefix_batch
54            serial = i.serial
55            pin = i.pin
56        else:
57            sno = i['student']
58            prefix = i.get('prefix_batch')
59            serial = i.get('serial')
60            pin = i.get('pin')
61        item['student'] = sno
62        item['prefix'] = prefix
63        item['serial'] = serial
64        if len(sno) > 0:
65            item['pin'] = pin
66        else:
67            if str(member) in ('admin','joachim'):
68                item['pin'] = "%s" % (pin,)
69            else:
70                item['pin'] = "%s%s****%s" % (i.prefix_batch,pin[-10:-7],pin[-3:])
71
72        if sno.startswith('disabled'):
73            item['student_url'] = None
74            item['student_id'] = sno
75        elif len(sno)==10 or '/' in sno:
76            #res = context.portal_catalog(SearchableText=sno,portal_type='StudentApplication')
77            res = context.students_catalog(jamb_reg_no=sno.upper())
78            if len(res) > 0:
79                item['student_url'] = "%s/campus/students/%s/application" % (context.portal_url(),res[0].id)
80                item['student_id'] = res[0].id
81            else:
82                item['student_url'] = None
83                item['student_id'] = ''
84        elif len(sno) == 7:
85            item['student_url'] = '%s/campus/students/%s' % (context.portal_url(),item['student'])
86            item['student_id'] = item['student']
87        elif sno.startswith(prefix):
88            item['student_url'] = None
89            item['student_id'] = ''       
90        else:
91            item['student_url'] = ''
92            item['student_id'] = "not used"
93        l.append(item)
94    return l
95
96lt = context.portal_layouts
97validate = request.has_key("cpsdocument_edit_button")
98default = {'search_mode': 'student',}
99rend,psm,ds = lt.renderLayout(layout_id= 'scratch_card_search',
100                      schema_id= 'student_search',
101                      context=context,
102                      mapping=validate and request,
103                      ob=default,
104                      layout_mode='edit',
105                      formaction="search_pins",
106                      commit = False,
107                      )
108info = {}
109info['used'] = []
110#from Products.zdb import set_trace;set_trace()
111if context.portal_type == "ScratchCardBatch":
112    info['batch_doc'] = context.getContent()
113    #info['used'] = set_used_pins(info['batch_doc'].getUsedPins())
114    info['used'] = []
115    info['unused'] = info['batch_doc'].getUnusedPins()
116    info['nr_used'] = info['batch_doc'].getNumberOfUsedPins()
117    view = context.batch_view
118elif context.portal_type == "ScratchCardBatchesFolder":
119    batches = context.objectIds()
120    batches.sort()
121    l = []
122    cols = 6
123    rows,rest = divmod(len(batches),cols)
124    bis = 0
125    for r in range(rows):
126        von = r*cols
127        bis = von + cols
128        l += batches[von:bis],
129    if rest:
130        von = bis
131        l += batches[von:von+rest],
132    info['batches'] = l
133    view = context.pins_view
134if psm == '':
135    return view(rendered = rend,
136                psm = psm,
137                #psm = "%s, %s" % (psm,ds),
138                info = info,
139                allowed = True,
140                )
141what = ds.get('search_mode')
142term = ds.get('search_string')
143
144items=[]
145if term != "":
146    if what == 'student' :
147        items_1 = pincat(student = term.upper())
148        items_2 = pincat(student = term.lower())
149        items = items_1 + items_2
150    elif what == 'pin':
151        term = term.replace('-','').strip().upper()
152        if context.portal_type == "ScratchCardBatch" and term == "HOS1":
153            items = check_hostel_pins(term)
154        else:
155            items = pincat(pin = term)
156    elif what == 'serial':
157        try:
158            snr = int(term.strip())
159            items = pincat(serial = snr)
160        except ValueError:
161            psm = "invalid number"
162            items = []
163            pass
164    else:
165        items = []
166
167info['used'] = set_used_pins(items,from_cat=True)
168
169
170
171return view(rendered = rend,
172            psm = psm,
173            #psm = "%s, %s" % (psm,ds),
174            info = info,
175            allowed = True,
176            )
177
Note: See TracBrowser for help on using the repository browser.