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

Last change on this file since 705 was 696, checked in by joachim, 19 years ago

added link to student also to used Pins

File size: 1.3 KB
Line 
1## Script (Python) "cpsdocument_edit"
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: student_edit.py 486 2006-09-06 10:09:39Z joachim $
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    if bd.prefix == "APP":
32        jno = item['student']
33        item['student_url'] = "%s/%s" % (context.portal_url(),
34                                         context.portal_catalog(SearchableText=jno,
35                                                                portal_type='StudentApplication')[0].relative_path
36                                        )                       
37    else:
38        item['student_url'] = '%s/%s' % (students_url,item['student'])
39info['used'] = used
40return info
Note: See TracBrowser for help on using the repository browser.