Menüpunkt für Studentenmeldung unterscheidet nun zwischen "normaler" und Lergangsmeldung.

Der Menüpunkt Plausibilitätsprüfung wurde entfernt da er das selbe Ergebnis liefert wie "Meldung generieren"
This commit is contained in:
Andreas Österreicher
2009-10-29 09:48:34 +00:00
parent 945d2666c8
commit b4adcab348
3 changed files with 12 additions and 35 deletions
-7
View File
@@ -129,7 +129,6 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
<command id="menu-bis-mitarbeiter-export:command" oncommand="BISMitarbeiterExport();"/>
<command id="menu-bis-mitarbeiter-checkverwendung:command" oncommand="BISMitarbeiterCheckVerwendung();"/>
<command id="menu-bis-mitarbeiter-checkfunktion:command" oncommand="BISMitarbeiterCheckFunktion();"/>
<command id="menu-bis-studenten-plausibilitaetspruefung:command" oncommand="BISStudentenPlausicheck();"/>
<command id="menu-bis-studenten-export:command" oncommand="BISStudentenExport();"/>
<command id="menu-help-about:command" oncommand="OpenAboutDialog()"/>
<command id="menu-help-manual:command" oncommand="OpenManual()"/>
@@ -661,12 +660,6 @@ echo '<?xul-overlay href="'.APP_ROOT.'content/fasoverlay.xul.php"?>';
</menu>
<menu id="menu-bis-studenten" label="&menu-bis-studenten.label;" accesskey="&menu-bis-studenten.accesskey;">
<menupopup id="menu-bis-studenten-popup">
<menuitem
id = "menu-bis-studenten-plausibilitaetspruefung"
key = "menu-bis-studenten-plausibilitaetspruefung:key"
label = "&menu-bis-studenten-plausibilitaetspruefung.label;"
command = "menu-bis-studenten-plausibilitaetspruefung:command"
accesskey = "&menu-bis-studenten-plausibilitaetspruefung.accesskey;"/>
<menuitem
id = "menu-bis-studenten-export"
key = "menu-bis-studenten-export:key"
+12 -24
View File
@@ -1229,29 +1229,6 @@ function BISMitarbeiterCheckFunktion()
window.open('<?php echo APP_ROOT ?>vilesci/bis/checkfunktion.php','CheckFunktion','');
}
// ****
// * oeffnet Script zum Checken der Studentendaten
// ****
function BISStudentenPlausicheck()
{
var tree=document.getElementById('tree-verband');
//Wenn nichts markiert wurde -> beenden
if(tree.currentIndex==-1)
{
alert('Bitte einen Studiengang auswaehlen');
return;
}
col = tree.columns ? tree.columns["stg_kz"] : "stg_kz";
var stg_kz=tree.view.getCellText(tree.currentIndex,col);
if(stg_kz!='')
window.open('<?php echo APP_ROOT ?>vilesci/bis/studentenmeldung.php?plausi=J&stg_kz='+stg_kz,'Datencheck','');
else
alert('Bitte einen Studiengang auswaehlen');
}
// ****
// * oeffnet Script zum BIS-Export der Studentendaten
// ****
@@ -1270,9 +1247,20 @@ function BISStudentenExport()
var stg_kz=tree.view.getCellText(tree.currentIndex,col);
if(stg_kz!='')
window.open('<?php echo APP_ROOT ?>vilesci/bis/studentenmeldung.php?stg_kz='+stg_kz,'StudentenMeldung','');
{
if(stg_kz>=0)
{
window.open('<?php echo APP_ROOT ?>vilesci/bis/studentenmeldung.php?stg_kz='+stg_kz,'StudentenMeldung','');
}
else
{
window.open('<?php echo APP_ROOT ?>vilesci/bis/lehrgangsmeldung.php?stg_kz='+stg_kz,'Lehrgangsmeldung','');
}
}
else
{
alert('Bitte einen Studiengang auswaehlen');
}
}
// ****
-4
View File
@@ -304,10 +304,6 @@
<!ENTITY menu-bis-studenten.label "Studenten">
<!ENTITY menu-bis-studenten.accesskey "S">
<!ENTITY menu-bis-studenten-plausibilitaetspruefung.key "P">
<!ENTITY menu-bis-studenten-plausibilitaetspruefung.label "Plausibilitätsprüfung">
<!ENTITY menu-bis-studenten-plausibilitaetspruefung.accesskey "P">
<!ENTITY menu-bis-studenten-export.key "E">
<!ENTITY menu-bis-studenten-export.label "Meldung generieren">
<!ENTITY menu-bis-studenten-export.accesskey "E">