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