source: WAeUP_SRP/trunk/skins/waeup_pins/getBatchInfo.py @ 863

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

script names corrected

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1## Script (Python) "getBatchInfo"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=batch=None
8##title=
9##
10# $Id: getBatchInfo.py 845 2006-11-11 21:29:50Z henrik $
11"""
12return Info about the current Batch
13"""
14
15info = {}
16if batch is None:
17    if context.portal_type == 'ScratchCardBatch':
18        batch = context
19    else:
20        return None
21bd = batch.getContent()
22info['batch_doc'] = bd
23info['id'] = batch.getId()
24info['title'] = batch.Title or 'empty Title'
25info['unused'],used = batch.getContent().getUnusedPins()
26l = []
27students_rpath = context.portal_catalog(meta_type = "StudentsFolder")[-1].relative_path
28students_url = "%s/%s" % (context.portal_url(),students_rpath)
29
30for item in used:
31    sno = item['student']
32    if len(sno)==10:
33    #if bd.prefix == "APP":
34        res = context.portal_catalog(SearchableText=sno,portal_type='StudentApplication')
35        if len(res) > 0:
36            item['student_url'] = "%s/%s" % (context.portal_url(),res[0].relative_path)
37        else:
38            item['student_url'] = None
39    else:
40        item['student_url'] = '%s/%s' % (students_url,item['student'])
41info['used'] = used
42return info
Note: See TracBrowser for help on using the repository browser.