This commit is contained in:
Andreas Österreicher
2008-06-03 15:49:50 +00:00
parent be8208eea5
commit b8a5efcbdc
12 changed files with 170 additions and 15 deletions
+7
View File
@@ -114,6 +114,7 @@ echo '<?xml-stylesheet href="datepicker/datepicker.css" type="text/css"?>';
<command id="menu-extras-gruppenverwaltung:command" oncommand="ExtrasShowGruppenverwaltung();"/>
<command id="menu-extras-lehrfachverwaltung:command" oncommand="ExtrasShowLehrfachverwaltung();"/>
<command id="menu-extras-lektorenzuordnunginstitute:command" oncommand="ExtrasShowLektorenzuordnunginstitute();"/>
<command id="menu-extras-preinteressentenuebernahme:command" oncommand="ExtrasShowPreinteressentenuebernahme();"/>
<command id="menu-bis-mitarbeiter-import:command" oncommand="BISMitarbeiterImport();"/>
<command id="menu-bis-mitarbeiter-export:command" oncommand="BISMitarbeiterExport();"/>
<command id="menu-bis-mitarbeiter-checkverwendung:command" oncommand="BISMitarbeiterCheckVerwendung();"/>
@@ -516,6 +517,12 @@ echo '<?xml-stylesheet href="datepicker/datepicker.css" type="text/css"?>';
label = "&menu-extras-lektorenzuordnunginstitute.label;"
command = "menu-extras-lektorenzuordnunginstitute:command"
accesskey = "&menu-extras-lektorenzuordnunginstitute.accesskey;"/>
<menuitem
id = "menu-extras-preinteressentenuebernahme"
key = "menu-extras-preinteressentenuebernahme:key"
label = "&menu-extras-preinteressentenuebernahme.label;"
command = "menu-extras-preinteressentenuebernahme:command"
accesskey = "&menu-extras-preinteressentenuebernahme.accesskey;"/>
</menupopup>
</menu>
<!-- ********** BIS ********** -->
+8
View File
@@ -1030,6 +1030,14 @@ function ExtrasShowLektorenzuordnunginstitute()
window.open('<?php echo APP_ROOT ?>vilesci/personen/institutsliste.php','Lektorenzuordnung-Institute','');
}
// ****
// * Zeigt HTML Seite zur Uebernahme der Preinteressenten
// ****
function ExtrasShowPreinteressentenuebernahme()
{
window.open('<?php echo APP_ROOT ?>vilesci/personen/preinteressent_uebernahme.php','PreinteressentUebernahme','');
}
// ****
// * Zeigt eine Seite zum Importieren der Funktionen aus der vorherigen BISMeldung
// ****
+2 -1
View File
@@ -64,8 +64,9 @@ else
<menuitem label="Student aus dieser Gruppe entfernen" oncommand="StudentGruppeDel();" id="student-tree-popup-gruppedel" hidden="false"/>
<menuitem label="EMail senden (intern)" oncommand="StudentSendMail();" id="student-tree-popup-mail" hidden="false"/>
<menuitem label="EMail senden (privat)" oncommand="StudentSendMailPrivat();" id="student-tree-popup-mailprivat" hidden="false"/>
<!--
<menuseparator />
<menuitem label="Personendetails anzeigen" oncommand="StudentShowPersonendetails();" id="student-tree-popup-personendetails" hidden="false"/>
<!--
<menuitem label="Interessenten löschen" oncommand="StudentDeleteInteressent();" id="student-tree-popup-deleteinteressent" hidden="false"/>
-->
</menupopup>
+9
View File
@@ -3966,6 +3966,15 @@ function StudentSendMailPrivat()
}
}
// ****
// * Oeffnet ein Fenster mit den Details der gesamten Person
// ****
function StudentShowPersonendetails()
{
person_id = document.getElementById('student-detail-textbox-person_id').value;
window.open('<?php echo APP_ROOT ?>vilesci/personen/personendetails.php?id='+person_id,'Personendetails','');
}
// ****
// * Erstellt das Diploma Supplement fuer einen oder mehrere Studenten
// ****