Index: openacs-4/packages/evaluation/tcl/evaluation-procs-postgresql.xql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/evaluation/tcl/evaluation-procs-postgresql.xql,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/evaluation/tcl/evaluation-procs-postgresql.xql 7 Jun 2004 16:05:06 -0000 1.5
+++ openacs-4/packages/evaluation/tcl/evaluation-procs-postgresql.xql 10 Jun 2004 21:08:53 -0000 1.6
@@ -443,6 +443,44 @@
+
+
+
+ select cu.person_id as party_id, cu.last_name||' - '||cu.first_names as party_name,
+ ese.grade,
+ ese.description as comments
+ from cc_users cu left outer join evaluation_student_evalsi ese on (ese.party_id = cu.person_id
+ and ese.task_id = :task_id
+ and content_revision__is_live(ese.evaluation_id) = true)
+
+
+
+
+
+
+
+ "select etg.group_id as party_id,
+ g.group_name as party_name,
+ ese.grade,
+ ese.description as comments
+ from groups g,
+ evaluation_task_groups etg left outer join evaluation_student_evalsi ese on (ese.party_id = etg.group_id
+ and ese.task_id = :task_id
+ and content_revision__is_live(ese.evaluation_id) = true)
+ where etg.task_id = :task_id
+ and etg.group_id = g.group_id
+
+
+
+
+
+
+
+ $sql_query
+
+
+
+