- FAS Menüpunkt für Bewerberstatistik im Excel-Format

This commit is contained in:
Andreas Österreicher
2009-09-11 09:35:11 +00:00
parent 690b6bd3d6
commit fd7cd90785
3 changed files with 32 additions and 12 deletions
+4 -2
View File
@@ -941,11 +941,13 @@ function StatistikPrintNotenspiegel(typ)
// ****
// * Liefert eine statistik ueber die Anzahl der Interessenten/Bewerber Studenten
// ****
function StatistikPrintBewerberstatistik()
function StatistikPrintBewerberstatistik(typ)
{
var stsem = getStudiensemester();
window.open('<?php echo APP_ROOT ?>content/statistik/bewerberstatistik.php?stsem='+stsem,'Bewerberstatistik');
if(typ=='xls')
typ='&excel=true';
window.open('<?php echo APP_ROOT ?>content/statistik/bewerberstatistik.php?stsem='+stsem+typ,'Bewerberstatistik');
}
// ****