- 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
+18 -7
View File
@@ -84,7 +84,8 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
<command id="menu-statistic-lehrauftragsliste:command" oncommand="StatistikPrintLehrauftragsliste();"/>
<command id="menu-statistic-projektarbeit:command" oncommand="StatistikPrintProjektarbeit();"/>
<command id="menu-statistic-abschlusspruefung:command" oncommand="StatistikPrintAbschlusspruefung();"/>
<command id="menu-statistic-bewerberstatistik:command" oncommand="StatistikPrintBewerberstatistik();"/>
<command id="menu-statistic-bewerberstatistik-html:command" oncommand="StatistikPrintBewerberstatistik('');"/>
<command id="menu-statistic-bewerberstatistik-excel:command" oncommand="StatistikPrintBewerberstatistik('xls');"/>
<command id="menu-statistic-abgaengerstatistik:command" oncommand="StatistikPrintAbgaengerstatistik();"/>
<command id="menu-statistic-fehlendedokumente:command" oncommand="StatistikPrintFehlendeDokumente();"/>
<command id="menu-statistic-notenspiegel:command" oncommand="StatistikPrintNotenspiegel('html');"/>
@@ -372,12 +373,22 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
';
}
?>
<menuitem
id = "menu-statistic-bewerberstatistik"
key = "menu-statistic-bewerberstatistik:key"
label = "&menu-statistic-bewerberstatistik.label;"
command = "menu-statistic-bewerberstatistik:command"
accesskey = "&menu-statistic-bewerberstatistik.accesskey;"/>
<menu id="menu-statistic-substatistik-bewerberstatistik" label="&menu-statistic-substatistik-bewerberstatistik.label;" accesskey="&menu-statistic-substatistik-bewerberstatistik.accesskey;">
<menupopup id="menu-statistic-substatistik-bewerberstatistik-popup">
<menuitem
id = "menu-statistic-bewerberstatistik-html"
key = "menu-statistic-bewerberstatistik-html:key"
label = "&menu-statistic-bewerberstatistik-html.label;"
command = "menu-statistic-bewerberstatistik-html:command"
accesskey = "&menu-statistic-bewerberstatistik-html.accesskey;"/>
<menuitem
id = "menu-statistic-bewerberstatistik-excel"
key = "menu-statistic-bewerberstatistik-excel:key"
label = "&menu-statistic-bewerberstatistik-excel.label;"
command = "menu-statistic-bewerberstatistik-excel:command"
accesskey = "&menu-statistic-bewerberstatistik-excel.accesskey;"/>
</menupopup>
</menu>
<menuitem
id = "menu-statistic-abgaengerstatistik"
key = "menu-statistic-abgaengerstatistik:key"
+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');
}
// ****
+10 -3
View File
@@ -106,9 +106,16 @@
<!ENTITY menu-statistic-notenspiegel.label "Notenspiegel HTML">
<!ENTITY menu-statistic-notenspiegel.accesskey "H">
<!ENTITY menu-statistic-bewerberstatistik.key "E">
<!ENTITY menu-statistic-bewerberstatistik.label "Bewerberstatistik">
<!ENTITY menu-statistic-bewerberstatistik.accesskey "E">
<!ENTITY menu-statistic-substatistik-bewerberstatistik.label "Bewerberstatistik">
<!ENTITY menu-statistic-substatistik-bewerberstatistik.accesskey "B">
<!ENTITY menu-statistic-bewerberstatistik-html.key "H">
<!ENTITY menu-statistic-bewerberstatistik-html.label "HTML">
<!ENTITY menu-statistic-bewerberstatistik-html.accesskey "H">
<!ENTITY menu-statistic-bewerberstatistik-excel.key "E">
<!ENTITY menu-statistic-bewerberstatistik-excel.label "EXCEL">
<!ENTITY menu-statistic-bewerberstatistik-excel.accesskey "E">
<!ENTITY menu-statistic-substatistik.key "S">
<!ENTITY menu-statistic-substatistik.label "Statistik">