mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 08:34:29 +00:00
This commit is contained in:
@@ -94,6 +94,7 @@ echo '<?xml-stylesheet href="datepicker/datepicker.css" type="text/css"?>';
|
||||
<command id="menu-dokumente-studienerfolg-finanzamt:command" oncommand="StudentCreateStudienerfolg('finanzamt');"/>
|
||||
<command id="menu-extras-reihungstest:command" oncommand="ExtrasShowReihungstest();"/>
|
||||
<command id="menu-extras-firma:command" oncommand="ExtrasShowFirmenverwaltung();"/>
|
||||
<command id="menu-bis-mitarbeiter-import:command" oncommand="BISMitarbeiterImport();"/>
|
||||
<command id="menu-help-close:command" oncommand="OpenAboutDialog()"/>
|
||||
</commandset>
|
||||
|
||||
@@ -323,6 +324,26 @@ echo '<?xml-stylesheet href="datepicker/datepicker.css" type="text/css"?>';
|
||||
accesskey = "&menu-extras-firma.accesskey;"/>
|
||||
</menupopup>
|
||||
</menu>
|
||||
<menu id="menu-bis" label="&menu-bis.label;" accesskey="&menu-bis.accesskey;">
|
||||
<menupopup id="menu-bis-popup">
|
||||
<menu id="menu-bis-mitarbeiter" label="&menu-bis-mitarbeiter.label;" accesskey="&menu-bis-mitarbeiter.accesskey;">
|
||||
<menupopup id="menu-bis-mitarbeiter-popup">
|
||||
<menuitem
|
||||
id = "menu-bis-mitarbeiter-import"
|
||||
key = "menu-bis-mitarbeiter-import:key"
|
||||
label = "&menu-bis-mitarbeiter-import.label;"
|
||||
command = "menu-bis-mitarbeiter-import:command"
|
||||
accesskey = "&menu-bis-mitarbeiter-import.accesskey;"/>
|
||||
<menuitem
|
||||
id = "menu-bis-mitarbeiter-export"
|
||||
key = "menu-bis-mitarbeiter-export:key"
|
||||
label = "&menu-bis-mitarbeiter-export.label;"
|
||||
command = "menu-bis-mitarbeiter-export:command"
|
||||
accesskey = "&menu-bis-mitarbeiter-export.accesskey;"/>
|
||||
</menupopup>
|
||||
</menu>
|
||||
</menupopup>
|
||||
</menu>
|
||||
<menu id="menu-help" label="&menu-help.label;" accesskey="&menu-help.accesskey;">
|
||||
<menupopup id="menu-about-popup">
|
||||
<menuitem
|
||||
|
||||
@@ -756,6 +756,14 @@ function ExtrasShowFirmenverwaltung()
|
||||
window.open('<?php echo APP_ROOT ?>vilesci/stammdaten/firma_frameset.html','Firma','');
|
||||
}
|
||||
|
||||
// ****
|
||||
// * Zeigt eine Seite zum Importieren der Funktionen aus der vorherigen BISMeldung
|
||||
// ****
|
||||
function BISMitarbeiterImport()
|
||||
{
|
||||
window.open('<?php echo APP_ROOT ?>vilesci/bis/personalimport.php','Import','');
|
||||
}
|
||||
|
||||
// ****
|
||||
// * Oeffnet den About Dialog
|
||||
// ****
|
||||
@@ -845,4 +853,5 @@ function EinstellungenKontoFilterStgChange()
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -338,6 +338,10 @@ if(!$error)
|
||||
if (isset($_POST['anmerkung'])) $leDAO->anmerkung=$_POST['anmerkung'];
|
||||
$leDAO->lvnr=(isset($_POST['lvnr'])?$_POST['lvnr']:'');
|
||||
$leDAO->unr=(isset($_POST['unr'])?$_POST['unr']:'');
|
||||
if($leDAO->unr=='')
|
||||
{
|
||||
$leDAO->unr = $_POST['lehreinheit_id'];
|
||||
}
|
||||
$leDAO->updateamum=date('Y-m-d H:i:s');
|
||||
$leDAO->updatevon=$user;
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ echo '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
|
||||
|
||||
<groupbox id="mitarbeiter-detail-groupbox-verwendung" flex="1">
|
||||
<caption label="Verwendung" />
|
||||
<hbox>
|
||||
<hbox flex="1">
|
||||
<tree id="mitarbeiter-tree-verwendung" seltype="single" hidecolumnpicker="false" flex="1"
|
||||
datasources="rdf:null" ref="http://www.technikum-wien.at/bisverwendung/liste"
|
||||
onselect="MitarbeiterVerwendungSelect();"
|
||||
@@ -155,7 +155,7 @@ echo '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
|
||||
</hbox>
|
||||
|
||||
|
||||
<groupbox id="mitarbeiter-detail-groupbox-funktion" flex="1">
|
||||
<groupbox id="mitarbeiter-detail-groupbox-funktion">
|
||||
<caption label="Funktion" />
|
||||
<hbox>
|
||||
<tree id="mitarbeiter-tree-funktion" seltype="single" hidecolumnpicker="false" flex="1"
|
||||
@@ -246,7 +246,7 @@ echo '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
|
||||
</hbox>
|
||||
</groupbox>
|
||||
</groupbox>
|
||||
<groupbox id="mitarbeiter-detail-groupbox-entwicklungsteam" flex="1">
|
||||
<groupbox id="mitarbeiter-detail-groupbox-entwicklungsteam">
|
||||
<caption label="Entwicklungsteam" />
|
||||
<hbox>
|
||||
<tree id="mitarbeiter-tree-entwicklungsteam" seltype="single" hidecolumnpicker="false" flex="1"
|
||||
|
||||
Reference in New Issue
Block a user