diff --git a/cis/public/kollegium.html b/cis/public/kollegium.html index ee73af33c..94a2a870d 100644 --- a/cis/public/kollegium.html +++ b/cis/public/kollegium.html @@ -36,6 +36,7 @@ Balog Peter
Franz Peter
Gollner Helmut
Hausberger Peter
+Hofmann Alexander
Horauer Martin
Kollmitzer Christian
Krösl Peter
@@ -51,34 +52,30 @@ Woletz Kurt


VertreterInnen der Lehrenden

-Maderdonner Otto
- +Brezowar Gabriela
+Kimmel Martin
Lehner Martin
-Sommer Thomas
-Paminger Christian
-Hofmann Alexander
+Maderdonner Otto
Neubauer Ulrike
-Harald Wahl
-Susanne Teschl
+Paminger Christian
+Shooman Diane
+Teschl Susanne
+Wahl Harald


Ersatzmitglieder der Lehrenden (werden in dieser Reihenfolge bei langfristigem Ausfall oder Ausscheidens eines Kollegiumsmitgliedes der Lehrenden ins Kollegium entsandt)

-Rössler Peter
-Kittenberger Thomas
-Höller Roland
+Sommer Thomas
+Markl Erich
+Martinek Johannes
+Trenker Markus


Vertreter StudentInnen

-Walther Maria
-Neumann Eric
-Horvath Martin
-Mischling Barbara
-Brandl Richard
-Steinbrecher Helmut
- +Wahltermin ist am 02.12.2008
+   diff --git a/content/statistik/lektorenstatistik.php b/content/statistik/lektorenstatistik.php index 646336a7a..ef7dd3570 100644 --- a/content/statistik/lektorenstatistik.php +++ b/content/statistik/lektorenstatistik.php @@ -32,6 +32,8 @@ require_once('../../include/functions.inc.php'); if(!$conn = pg_pconnect(CONN_STRING)) die('Fehler beim Connecten zur DB'); +$ws=''; +$ss=''; if(isset($_GET['stsem'])) $stsem = $_GET['stsem']; else @@ -49,28 +51,6 @@ echo ' '; - - echo "

Lektorenstatistik $stsem"; - echo ''.date('d.m.Y').'


'; - echo ''; - echo '
Studiensemester: -


'; - -if($stsem!='') -{ if(substr($stsem, 0, 2)=='WS') { $stsem_obj = new studiensemester($conn); @@ -83,6 +63,35 @@ if($stsem!='') $ws = $stsem_obj->getPreviousFrom($stsem); $ss = $stsem; } + + echo "

Lektorenstatistik (Lehrauftrag) $ws / $ss"; + echo ''.date('d.m.Y').'


'; + echo ''; + echo '
Studiensemester: +


'; + +if($stsem!='') +{ + echo " diff --git a/content/statistik/mitarbeiterstatistik.php b/content/statistik/mitarbeiterstatistik.php index 78dd91f11..e791ba1ae 100644 --- a/content/statistik/mitarbeiterstatistik.php +++ b/content/statistik/mitarbeiterstatistik.php @@ -42,7 +42,7 @@ echo ''; - echo "

Mitarbeiterstatistik"; + echo "

Mitarbeiterstatistik (Hauptzuordnung)"; echo ''.date('d.m.Y').'


'; echo ''; diff --git a/content/statistik/studentenstatistik.php b/content/statistik/studentenstatistik.php index f1009d41b..3d041402f 100644 --- a/content/statistik/studentenstatistik.php +++ b/content/statistik/studentenstatistik.php @@ -36,13 +36,14 @@ require_once('../../include/functions.inc.php'); if(!$conn = pg_pconnect(CONN_STRING)) die('Fehler beim Connecten zur DB'); +$stsem_obj = new studiensemester($conn); if(isset($_GET['stsem'])) $stsem = $_GET['stsem']; else { - $stsem_obj = new studiensemester($conn); $stsem = $stsem_obj->getaktorNext(); } +$stsem_obj->load($stsem); echo ' @@ -81,6 +82,7 @@ if($stsem!='') + @@ -91,6 +93,7 @@ if($stsem!='') + @@ -107,7 +110,12 @@ if($stsem!='') (SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent JOIN public.tbl_prestudentrolle USING (prestudent_id) JOIN public.tbl_studiengang USING(studiengang_kz) WHERE rolle_kurzbz='Student' AND studiensemester_kurzbz='$stsem' AND typ='b' ) a) AS gesamt_alle, - + (SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent JOIN public.tbl_prestudentrolle USING (prestudent_id) + WHERE studiengang_kz=stg.studiengang_kz AND rolle_kurzbz='Incoming' AND studiensemester_kurzbz='$stsem' + ) a) AS inc, + (SELECT count(*) FROM (SELECT distinct student_uid FROM public.tbl_student JOIN bis.tbl_bisio USING (student_uid) + WHERE studiengang_kz=stg.studiengang_kz AND (bis>='$stsem_obj->start' OR bis is null) AND von<='$stsem_obj->ende' + ) a) AS out, (SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent JOIN public.tbl_prestudentrolle USING (prestudent_id) WHERE studiengang_kz=stg.studiengang_kz AND rolle_kurzbz='Student' AND studiensemester_kurzbz='$stsem' AND orgform_kurzbz='BB' ) a) AS bb, @@ -148,6 +156,8 @@ if($stsem!='') $gesamt_at=0; $gesamt_eu=0; $gesamt_noteu=0; + $gesamt_inc=0; + $gesamt_out=0; while($row = pg_fetch_object($result)) { echo ''; @@ -155,6 +165,7 @@ if($stsem!='') echo ""; $prozent = ($row->gesamt_alle!=0?$row->gesamt_stg/$row->gesamt_alle*100:0); echo ""; + echo ""; echo ""; echo ""; echo ""; @@ -170,11 +181,14 @@ if($stsem!='') $gesamt_at += $row->herkunft_at; $gesamt_eu += $row->herkunft_eu; $gesamt_noteu += $row->herkunft_noteu; + $gesamt_inc+=$row->inc; + $gesamt_out+=$row->out; } echo ''; echo ''; echo ""; echo ""; + echo ""; echo ""; echo ""; echo ""; @@ -190,6 +204,7 @@ if($stsem!='') + @@ -204,7 +219,12 @@ if($stsem!='') (SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentrolle USING (prestudent_id) JOIN public.tbl_studiengang USING(studiengang_kz) WHERE rolle_kurzbz='Student' AND studiensemester_kurzbz='$stsem' AND typ='m' ) AS gesamt_alle, - + (SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent JOIN public.tbl_prestudentrolle USING (prestudent_id) + WHERE studiengang_kz=stg.studiengang_kz AND rolle_kurzbz='Incoming' AND studiensemester_kurzbz='$stsem' + ) a) AS inc, + (SELECT count(*) FROM (SELECT distinct student_uid FROM public.tbl_student JOIN bis.tbl_bisio USING (student_uid) + WHERE studiengang_kz=stg.studiengang_kz AND (bis>='$stsem_obj->start' OR bis is null) AND von<='$stsem_obj->ende' + ) a) AS out, (SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent JOIN public.tbl_prestudentrolle USING (prestudent_id) WHERE studiengang_kz=stg.studiengang_kz AND rolle_kurzbz='Student' AND studiensemester_kurzbz='$stsem' AND orgform_kurzbz='BB' ) a) AS bb, @@ -245,6 +265,8 @@ if($stsem!='') $gesamt_at=0; $gesamt_eu=0; $gesamt_noteu=0; + $gesamt_inc=0; + $gesamt_out=0; while($row = pg_fetch_object($result)) { echo ''; @@ -252,6 +274,7 @@ if($stsem!='') echo ""; $prozent = ($row->gesamt_alle!=0?$row->gesamt_stg/$row->gesamt_alle*100:0); echo ""; + echo ""; echo ""; echo ""; echo ""; @@ -267,11 +290,14 @@ if($stsem!='') $gesamt_at += $row->herkunft_at; $gesamt_eu += $row->herkunft_eu; $gesamt_noteu += $row->herkunft_noteu; + $gesamt_inc+=$row->inc; + $gesamt_out+=$row->out; } echo ''; echo ''; echo ""; echo ""; + echo ""; echo ""; echo ""; echo "";
Anteil an GesamtExtern Studienart Geschlecht StaatsbürgerschaftBachelor Studiengänge Absolut / %In / Out BB / VZ m / w Österreich
".strtoupper($row->typ.$row->kurzbz)." ($row->kurzbzlang)$row->gesamt_stg / ".sprintf('%0.2f', $prozent)." %$row->inc / $row->out$row->bb / $row->vz$row->m / $row->w$row->herkunft_at
SUMME $gesamt / ".sprintf('%0.2f', $gesamt_prozent)." %$gesamt_inc / $gesamt_out$gesamt_bb / $gesamt_vz$gesamt_m / $gesamt_w$gesamt_atMaster Studiengänge Absolut / %In / Out BB / VZ m / w Österreich
".strtoupper($row->typ.$row->kurzbz)." ($row->kurzbzlang)$row->gesamt_stg / ".sprintf('%0.2f', $prozent)." %$row->inc / $row->out$row->bb / $row->vz$row->m / $row->w$row->herkunft_at
SUMME $gesamt / ".sprintf('%0.2f', $gesamt_prozent)." %$gesamt_inc / $gesamt_out$gesamt_bb / $gesamt_vz$gesamt_m / $gesamt_w$gesamt_at