mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 16:02:15 +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"
|
||||
|
||||
@@ -343,7 +343,7 @@ class bisverwendung
|
||||
$obj->insertamum = $row->insertamum;
|
||||
$obj->insertvon = $row->insertvon;
|
||||
$obj->ext_id = $row->ext_id;
|
||||
$obj->ba1bez = $row->ba1bez;
|
||||
$obj->ba1bez = $row->ba1kurzbz;
|
||||
$obj->ba2bez = $row->ba2bez;
|
||||
$obj->beschausmass = $row->beschausmassbez;
|
||||
$obj->verwendung = $row->verwendungbez;
|
||||
|
||||
+17
-1
@@ -117,4 +117,20 @@
|
||||
|
||||
<!ENTITY menu-extras-firma.key "F">
|
||||
<!ENTITY menu-extras-firma.label "Firmenverwaltung">
|
||||
<!ENTITY menu-extras-firma.accesskey "F">
|
||||
<!ENTITY menu-extras-firma.accesskey "F">
|
||||
|
||||
<!ENTITY menu-bis.label "BIS">
|
||||
<!ENTITY menu-bis.accesskey "I">
|
||||
<!ENTITY menu-bis.accesskey "I">
|
||||
|
||||
<!ENTITY menu-bis-mitarbeiter.key "M">
|
||||
<!ENTITY menu-bis-mitarbeiter.label "Mitarbeiter">
|
||||
<!ENTITY menu-bis-mitarbeiter.accesskey "M">
|
||||
|
||||
<!ENTITY menu-bis-mitarbeiter-import.key "I">
|
||||
<!ENTITY menu-bis-mitarbeiter-import.label "Import">
|
||||
<!ENTITY menu-bis-mitarbeiter-import.accesskey "I">
|
||||
|
||||
<!ENTITY menu-bis-mitarbeiter-export.key "E">
|
||||
<!ENTITY menu-bis-mitarbeiter-export.label "Export">
|
||||
<!ENTITY menu-bis-mitarbeiter-export.accesskey "E">
|
||||
|
||||
@@ -41,7 +41,7 @@ if(isset($_GET['optional']) && $_GET['optional']=='true')
|
||||
</RDF:li>
|
||||
';
|
||||
}
|
||||
$qry = "SET CLIENT_ENCODING to 'UNICODE'; SELECT * FROM bis.tbl_ausbildung ORDER BY ausbildungbez";
|
||||
$qry = "SET CLIENT_ENCODING to 'UNICODE'; SELECT * FROM bis.tbl_ausbildung ORDER BY ausbildungcode";
|
||||
if($result = pg_query($conn, $qry))
|
||||
{
|
||||
while($row = pg_fetch_object($result))
|
||||
|
||||
@@ -55,7 +55,7 @@ if($result = pg_query($conn, $qry))
|
||||
<RDF:li>
|
||||
<RDF:Description id="'.$row->ba1code.'" about="'.$rdf_url.'/'.$row->ba1code.'" >
|
||||
<BESCHAEFTIGUNGSART:ba1code><![CDATA['.$row->ba1code.']]></BESCHAEFTIGUNGSART:ba1code>
|
||||
<BESCHAEFTIGUNGSART:ba1bez><![CDATA['.$row->ba1bez.']]></BESCHAEFTIGUNGSART:ba1bez>
|
||||
<BESCHAEFTIGUNGSART:ba1bez><![CDATA['.$row->ba1kurzbz.']]></BESCHAEFTIGUNGSART:ba1bez>
|
||||
</RDF:Description>
|
||||
</RDF:li>
|
||||
';
|
||||
|
||||
@@ -69,6 +69,18 @@ $obj->getLvGesamtNoten($lehrveranstaltung_id, $uid, $semester_aktuell);
|
||||
|
||||
foreach ($obj->result as $row)
|
||||
{
|
||||
$vorname = '';
|
||||
$nachname = '';
|
||||
$qry_name = "SELECT vorname, nachname FROM public.tbl_person JOIN public.tbl_benutzer USING(person_id) WHERE uid='$row->student_uid'";
|
||||
if($result_name = pg_query($conn, $qry_name))
|
||||
{
|
||||
if($row_name = pg_fetch_object($result_name))
|
||||
{
|
||||
$vorname = $row_name->vorname;
|
||||
$nachname = $row_name->nachname;
|
||||
}
|
||||
}
|
||||
|
||||
echo '
|
||||
<RDF:li>
|
||||
<RDF:Description id="'.$row->lehrveranstaltung_id.'/'.$row->student_uid.'/'.$row->studiensemester_kurzbz.'" about="'.$rdf_url.'/'.$row->lehrveranstaltung_id.'/'.$row->student_uid.'/'.$row->studiensemester_kurzbz.'" >
|
||||
@@ -83,9 +95,11 @@ foreach ($obj->result as $row)
|
||||
<NOTE:benotungsdatum><![CDATA['.$datum->convertISODate($row->benotungsdatum).']]></NOTE:benotungsdatum>
|
||||
<NOTE:note_bezeichnung><![CDATA['.$row->note_bezeichnung.']]></NOTE:note_bezeichnung>
|
||||
<NOTE:lehrveranstaltung_bezeichnung><![CDATA['.$row->lehrveranstaltung_bezeichnung.']]></NOTE:lehrveranstaltung_bezeichnung>
|
||||
<NOTE:student_vorname><![CDATA['.$vorname.']]></NOTE:student_vorname>
|
||||
<NOTE:student_nachname><![CDATA['.$nachname.']]></NOTE:student_nachname>
|
||||
</RDF:Description>
|
||||
</RDF:li>';
|
||||
}
|
||||
?>
|
||||
</RDF:Seq>
|
||||
</RDF:RDF>
|
||||
</RDF:RDF>
|
||||
|
||||
Reference in New Issue
Block a user