mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
365 lines
14 KiB
PHP
365 lines
14 KiB
PHP
<?php
|
|
/* Copyright (C) 2007 Technikum-Wien
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
|
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
|
|
* Rudolf Hangl <rudolf.hangl@technikum-wien.at>.
|
|
*/
|
|
/*
|
|
* Erstellt eine Liste mit den Absolventen eines Studiensemesters
|
|
* Aufteilung in
|
|
* - Anzahl Gesamt
|
|
* - Prozent Anteil
|
|
* - Vollzeit/Berufsbegleitend
|
|
* - Geschlecht
|
|
* - Herkunft (AT/EU/Nicht EU)
|
|
*/
|
|
require_once('../../config/vilesci.config.inc.php');
|
|
require_once('../../include/studiensemester.class.php');
|
|
require_once('../../include/benutzerberechtigung.class.php');
|
|
require_once('../../include/functions.inc.php');
|
|
|
|
$uid = get_uid();
|
|
$rechte = new benutzerberechtigung();
|
|
$rechte->getBerechtigungen($uid);
|
|
if(!$rechte->isBerechtigt('student/stammdaten', null, 's'))
|
|
die($rechte->errormsg);
|
|
|
|
if(isset($_GET['stsem']))
|
|
$stsem = $_GET['stsem'];
|
|
else
|
|
{
|
|
$stsem_obj = new studiensemester();
|
|
$stsem = $stsem_obj->getaktorNext();
|
|
}
|
|
$db = new basis_db();
|
|
echo '<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link href="../../skin/vilesci.css" rel="stylesheet" type="text/css">';
|
|
include('../../include/meta/jquery.php');
|
|
include('../../include/meta/jquery-tablesorter.php');
|
|
echo '
|
|
<script language="Javascript">
|
|
$(document).ready(function()
|
|
{
|
|
$("#t1").tablesorter(
|
|
{
|
|
widgets: ["zebra"]
|
|
});
|
|
$("#t2").tablesorter(
|
|
{
|
|
widgets: ["zebra"]
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>';
|
|
|
|
echo "<h2>AbsolventInnenstatistik ".$db->convert_html_chars($stsem);
|
|
echo '<span style="position:absolute; right:15px;">'.date('d.m.Y').'</span></h2><br>';
|
|
echo '<form action="'.$_SERVER['PHP_SELF'].'" method="GET">Studiensemester: <SELECT name="stsem">';
|
|
$studsem = new studiensemester();
|
|
$studsem->getAll();
|
|
|
|
foreach ($studsem->studiensemester as $stsemester)
|
|
{
|
|
if($stsemester->studiensemester_kurzbz == $stsem)
|
|
$selected = 'selected';
|
|
else
|
|
$selected = '';
|
|
|
|
echo '<option value="'.$stsemester->studiensemester_kurzbz.'" '.$selected.'>';
|
|
echo $stsemester->studiensemester_kurzbz;
|
|
echo '</option>';
|
|
}
|
|
echo '</SELECT>
|
|
<input type="submit" value="Anzeigen" /></form><br><br>';
|
|
|
|
if ($stsem != '')
|
|
{
|
|
echo "<table id='t1'>
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
<th>Anteil an Gesamt</th>
|
|
<th>Studienart</th>
|
|
<th colspan=2>Geschlecht</th>
|
|
<th colspan=3>Staatsbürgerschaft</th>
|
|
</tr>
|
|
<tr>
|
|
<th>Bachelor</th>
|
|
<th>Studiengänge</th>
|
|
<th>Absolut / %</th>
|
|
<th>BB / VZ</th>
|
|
<th>m</th>
|
|
<th>w</th>
|
|
<th>Österreich</th>
|
|
<th>EU</th>
|
|
<th>Nicht-EU</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
";
|
|
//Bachelor
|
|
$qry = "SELECT studiengang_kz, kurzbz, typ, kurzbzlang, bezeichnung, orgform_kurzbz,
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)."
|
|
) a) AS gesamt_stg,
|
|
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_studiengang USING(studiengang_kz)
|
|
WHERE status_kurzbz='Absolvent' AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND typ='b'
|
|
) a) AS gesamt_alle,
|
|
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND orgform_kurzbz='BB'
|
|
) a) AS bb,
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND orgform_kurzbz='VZ'
|
|
) a) AS vz,
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id) JOIN public.tbl_person USING(person_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='w'
|
|
) a) AS w,
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id) JOIN public.tbl_person USING(person_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='m'
|
|
) a) AS m,
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id)
|
|
JOIN bis.tbl_nation on(staatsbuergerschaft=nation_code)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='m' AND nation_code='A'
|
|
) a) AS herkunft_at,
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id)
|
|
JOIN bis.tbl_nation on(staatsbuergerschaft=nation_code)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)."
|
|
AND geschlecht='m' AND eu AND nation_code<>'A'
|
|
) a) AS herkunft_eu,
|
|
(SELECT count(*) FROM (SELECT distinct prestudent_id FROM public.tbl_prestudent
|
|
JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id)
|
|
JOIN bis.tbl_nation on(staatsbuergerschaft=nation_code)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='m' AND NOT eu
|
|
) a) AS herkunft_noteu,
|
|
true
|
|
FROM
|
|
public.tbl_studiengang stg
|
|
WHERE
|
|
studiengang_kz>0 AND studiengang_kz<10000 AND aktiv AND typ='b'
|
|
ORDER BY typ, kurzbzlang; ";
|
|
|
|
if ($db->db_query($qry))
|
|
{
|
|
$gesamt = 0;
|
|
$gesamt_prozent = 0;
|
|
$gesamt_bb = 0;
|
|
$gesamt_vz = 0;
|
|
$gesamt_m = 0;
|
|
$gesamt_w = 0;
|
|
$gesamt_at = 0;
|
|
$gesamt_eu = 0;
|
|
$gesamt_noteu = 0;
|
|
while ($row = $db->db_fetch_object())
|
|
{
|
|
echo '<tr>';
|
|
echo '<td> </td>';
|
|
echo "<td>".mb_strtoupper($row->typ.$row->kurzbz)." ($row->kurzbzlang)</td>";
|
|
$prozent = ($row->gesamt_alle != 0?$row->gesamt_stg / $row->gesamt_alle * 100:0);
|
|
echo "<td align='center'>$row->gesamt_stg / ".sprintf('%0.2f', $prozent)." %</td>";
|
|
echo "<td align='center'>$row->bb / $row->vz</td>";
|
|
echo "<td align='center'>$row->m</td>";
|
|
echo "<td align='center'>$row->w</td>";
|
|
echo "<td align='center'>$row->herkunft_at</td>";
|
|
echo "<td align='center'>$row->herkunft_eu</td>";
|
|
echo "<td align='center'>$row->herkunft_noteu</td>";
|
|
echo "</tr>\n";
|
|
$gesamt += $row->gesamt_stg;
|
|
$gesamt_prozent += $prozent;
|
|
$gesamt_bb += $row->bb;
|
|
$gesamt_vz += $row->vz;
|
|
$gesamt_m += $row->m;
|
|
$gesamt_w += $row->w;
|
|
$gesamt_at += $row->herkunft_at;
|
|
$gesamt_eu += $row->herkunft_eu;
|
|
$gesamt_noteu += $row->herkunft_noteu;
|
|
}
|
|
echo '<tr>';
|
|
echo '<td><b>SUMME</b></td>';
|
|
echo "<td> </td>";
|
|
echo "<td align='center'><b>$gesamt / ".sprintf('%0.2f', $gesamt_prozent)." %</b></td>";
|
|
echo "<td align='center'><b>$gesamt_bb / $gesamt_vz</b></td>";
|
|
echo "<td align='center'><b>$gesamt_m</b></td>";
|
|
echo "<td align='center'><b>$gesamt_w</b></td>";
|
|
echo "<td align='center'><b>$gesamt_at</b></td>";
|
|
echo "<td align='center'><b>$gesamt_eu</b></td>";
|
|
echo "<td align='center'><b>$gesamt_noteu</b></td>";
|
|
echo "</tr>\n";
|
|
}
|
|
echo '</tbody>
|
|
</table>';
|
|
|
|
//Master
|
|
|
|
echo "<table id='t2'>
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
<th>Anteil an Gesamt</th>
|
|
<th>Studienart</th>
|
|
<th colspan=2>Geschlecht</th>
|
|
<th colspan=3>Staatsbürgerschaft</th>
|
|
</tr>
|
|
<tr>
|
|
<th>Master</th>
|
|
<th>Studiengänge</th>
|
|
<th>Absolut / %</th>
|
|
<th>BB / VZ</th>
|
|
<th>m</th>
|
|
<th>w</th>
|
|
<th>Österreich</th>
|
|
<th>EU</th>
|
|
<th>Nicht-EU</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
";
|
|
|
|
$qry = "SELECT studiengang_kz, kurzbz, typ, kurzbzlang, bezeichnung, orgform_kurzbz,
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)."
|
|
) AS gesamt_stg,
|
|
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_studiengang USING(studiengang_kz)
|
|
WHERE status_kurzbz='Absolvent' AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND typ='m'
|
|
) AS gesamt_alle,
|
|
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND orgform_kurzbz='BB'
|
|
) AS bb,
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND orgform_kurzbz='VZ'
|
|
) AS vz,
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='w'
|
|
) AS w,
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='m'
|
|
) AS m,
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id) JOIN bis.tbl_nation on(staatsbuergerschaft=nation_code)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='m' AND nation_code='A'
|
|
) AS herkunft_at,
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id) JOIN bis.tbl_nation on(staatsbuergerschaft=nation_code)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)."
|
|
AND geschlecht='m' AND eu AND nation_code<>'A'
|
|
) AS herkunft_eu,
|
|
(SELECT count(*) FROM public.tbl_prestudent JOIN public.tbl_prestudentstatus USING (prestudent_id)
|
|
JOIN public.tbl_person USING(person_id) JOIN bis.tbl_nation on(staatsbuergerschaft=nation_code)
|
|
WHERE studiengang_kz=stg.studiengang_kz AND status_kurzbz='Absolvent'
|
|
AND studiensemester_kurzbz=".$db->db_add_param($stsem)." AND geschlecht='m' AND NOT eu
|
|
) AS herkunft_noteu,
|
|
true
|
|
FROM
|
|
public.tbl_studiengang stg
|
|
WHERE
|
|
studiengang_kz>0 AND studiengang_kz<10000 AND aktiv AND typ='m'
|
|
ORDER BY typ, kurzbzlang; ";
|
|
|
|
if ($db->db_query($qry))
|
|
{
|
|
$gesamt = 0;
|
|
$gesamt_prozent = 0;
|
|
$gesamt_bb = 0;
|
|
$gesamt_vz = 0;
|
|
$gesamt_m = 0;
|
|
$gesamt_w = 0;
|
|
$gesamt_at = 0;
|
|
$gesamt_eu = 0;
|
|
$gesamt_noteu = 0;
|
|
|
|
while ($row = $db->db_fetch_object())
|
|
{
|
|
echo '<tr>';
|
|
echo '<td> </td>';
|
|
echo "<td>".mb_strtoupper($row->typ.$row->kurzbz)." ($row->kurzbzlang)</td>";
|
|
$prozent = ($row->gesamt_alle != 0?$row->gesamt_stg / $row->gesamt_alle * 100:0);
|
|
echo "<td align='center'>$row->gesamt_stg / ".sprintf('%0.2f', $prozent)." %</td>";
|
|
echo "<td align='center'>$row->bb / $row->vz</td>";
|
|
echo "<td align='center'>$row->m</td>";
|
|
echo "<td align='center'>$row->w</td>";
|
|
echo "<td align='center'>$row->herkunft_at</td>";
|
|
echo "<td align='center'>$row->herkunft_eu</td>";
|
|
echo "<td align='center'>$row->herkunft_noteu</td>";
|
|
echo "</tr>\n";
|
|
$gesamt += $row->gesamt_stg;
|
|
$gesamt_prozent += $prozent;
|
|
$gesamt_bb += $row->bb;
|
|
$gesamt_vz += $row->vz;
|
|
$gesamt_m += $row->m;
|
|
$gesamt_w += $row->w;
|
|
$gesamt_at += $row->herkunft_at;
|
|
$gesamt_eu += $row->herkunft_eu;
|
|
$gesamt_noteu += $row->herkunft_noteu;
|
|
}
|
|
|
|
echo '<tr>';
|
|
echo '<td><b>SUMME</b></td>';
|
|
echo "<td> </td>";
|
|
echo "<td align='center'><b>$gesamt / ".sprintf('%0.2f', $gesamt_prozent)." %</b></td>";
|
|
echo "<td align='center'><b>$gesamt_bb / $gesamt_vz</b></td>";
|
|
echo "<td align='center'><b>$gesamt_m</b></td>";
|
|
echo "<td align='center'><b>$gesamt_w</b></td>";
|
|
echo "<td align='center'><b>$gesamt_at</b></td>";
|
|
echo "<td align='center'><b>$gesamt_eu</b></td>";
|
|
echo "<td align='center'><b>$gesamt_noteu</b></td>";
|
|
echo "</tr>\n";
|
|
}
|
|
echo '</tbody></table>';
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|