4645 lines
218 KiB
PHP
Executable File
4645 lines
218 KiB
PHP
Executable File
<?php
|
|
include("kurs/datenbankanbindung.php"); // fügt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
|
|
require("func_check_vertiefungsbereich.php"); // Prüft, ob doppelte Vertiefungsbereiche abgegeben werden.
|
|
require("func_pflichtfelder.php"); // Prüft, ob Pflichtfelder ausgefüllt wurden
|
|
require("func_vertiefungsbereich.php"); // Prüft, ob vertiefungsbereich gewählt wurde, wenn Stellen erfasst sind.
|
|
#require("func_anz_stellen.php"); // Prüft, ob mehr als 3 Stellen beantragt werden pro Vertiefungsbereich
|
|
$uid1=$_COOKIE["uid1"];
|
|
|
|
if ($uid1 == ""){ include("kurs/anmeldefehler_subdir.php"); exit;} //Wenn man nicht angemeldet ist soll man nichts auswählen können
|
|
|
|
|
|
$db = dbconnect();
|
|
include("kurs/sta/stan_useronline_write.php"); // Für Statistik, wieviele User online sind
|
|
|
|
|
|
// ÜBerprüfung, ob die Anmeldefrist überschritten ist
|
|
$heute = mktime(date("H"), date("i"), date("s"), date("m"), date("d"), date("Y")); // heutiges Datum
|
|
$heute_format = date("YmdHis", $heute); // ISO-8601 Format wie in der Datenbank: Formatierung für Vergleiche erforderlich
|
|
|
|
$res = $db->query("SELECT Jahrgang FROM stud WHERE uid='$uid1'");
|
|
$stud_jahr = $res->fetch_array();
|
|
|
|
$anm_schluss = $db->query("SELECT DATE_Format(anmeldebeginn, '%Y%m%d%H%i%s')AS beginndatum, DATE_Format(anmeldebeginn, '%d.%m.%Y um %H:%i:%s Uhr')AS beginnform, DATE_Format(anmeldeschluss, '%Y%m%d%H%i%s')AS enddatum
|
|
FROM stan_frist
|
|
WHERE jahrgang=\"$stud_jahr[Jahrgang]\"");
|
|
$row_schluss = $anm_schluss->fetch_array(); // Herausfinden des Beginn- Schlussdatums
|
|
|
|
$a = strtotime ($heute_format); //Umrechnung des Fristgrenztages in eine Zahl
|
|
$b = strtotime ($row_schluss['enddatum']); // Umrechnung des Enddatums in eine Zahl
|
|
$c = strtotime ($row_schluss['beginndatum']); // Umrechnung des Beginndatums in eine Zahl
|
|
|
|
if ($a < $c){
|
|
echo "
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">
|
|
<link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\">
|
|
<title>Anmeldungen noch nicht möglich!</title>
|
|
</head>
|
|
<body>
|
|
<table border=\"0\" style=\"border-collapse: collapse\" width=\"100%\" cellpadding=\"0\" height=\"100%\" id=\"table1\">
|
|
<tr>
|
|
<td>
|
|
<div align=\"center\">
|
|
<table cellspacing=\"0\" cellpadding=\"0\" width=\"550\" border=\"0\">
|
|
<tr>
|
|
<td width=\"10\" background=\"../images/box_e1.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"3%\" background=\"../images/box_top.gif\" valign=\"top\"></td>
|
|
<td width=\"95%\" background=\"../images/box_top.gif\">
|
|
<img height=\"10\" src=\"../images/blank.gif\" width=\"1\"><br>
|
|
<span class=\"sh\">Anmeldungen noch nicht möglich!</span><br>
|
|
<img height=\"5\" src=\"../images/blank.gif\" width=\"1\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e2.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width=\"1%\" background=\"../images/box_l.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td colspan=\"2\"><br>
|
|
<p align=\"center\"><b>Anträge sind erst ab $row_schluss[beginnform] möglich!</b><br>
|
|
</p>
|
|
<p align=\"center\"><a href=\"hauptframe.php\">
|
|
<img border=\"0\" src=\"../images/zurueck.gif\" width=\"77\" height=\"22\"></a><br>
|
|
</p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p><br>
|
|
</p>
|
|
</td>
|
|
<td width=\"1%\" background=\"../images/box_r.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"1%\" background=\"../images/box_e3.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"../images/box_bottom.gif\" colspan=\"2\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"8\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e4.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"> </td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>";
|
|
exit;
|
|
} // Ende Überprüfung der Zeitüberschreitung
|
|
|
|
if ($a >= $b){
|
|
echo "
|
|
<html>
|
|
<head>
|
|
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">
|
|
<link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\">
|
|
<title>Anmeldezeit vertstrichen</title>
|
|
</head>
|
|
<body>
|
|
<table border=\"0\" style=\"border-collapse: collapse\" width=\"100%\" cellpadding=\"0\" height=\"100%\" id=\"table1\">
|
|
<tr>
|
|
<td>
|
|
<div align=\"center\">
|
|
<table cellspacing=\"0\" cellpadding=\"0\" width=\"550\" border=\"0\">
|
|
<tr>
|
|
<td width=\"10\" background=\"../images/box_e1.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"3%\" background=\"../images/box_top.gif\" valign=\"top\"></td>
|
|
<td width=\"95%\" background=\"../images/box_top.gif\">
|
|
<img height=\"10\" src=\"../images/blank.gif\" width=\"1\"><br>
|
|
<span class=\"sh\">Anmeldezeit vertstrichen</span><br>
|
|
<img height=\"5\" src=\"../images/blank.gif\" width=\"1\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e2.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width=\"1%\" background=\"../images/box_l.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td colspan=\"2\"><br>
|
|
<p align=\"center\">Anträge sind derzeit nicht möglich!<br>Es sind nur noch <a href=\"antrag_aend.php\">Änderungsanträge</a> möglich
|
|
</p>
|
|
<p align=\"center\"><a href=\"hauptframe.php\">
|
|
<img border=\"0\" src=\"../images/zurueck.gif\" width=\"77\" height=\"22\"></a><br>
|
|
</p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p><br>
|
|
</p>
|
|
</td>
|
|
<td width=\"1%\" background=\"../images/box_r.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"1%\" background=\"../images/box_e3.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"../images/box_bottom.gif\" colspan=\"2\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"8\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e4.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"> </td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>";
|
|
exit;
|
|
} // Ende Überprüfung der Zeitüberschreitung
|
|
|
|
|
|
|
|
# Wenn Erstanträge abgesendet wurden, dürfen keine Stellen mehr vorgemerkt werden
|
|
$res2 = $db->query("SELECT distinct status
|
|
FROM stan_antrag
|
|
WHERE uid='$uid1'
|
|
LIMIT 1");
|
|
$stud_status = $res2->fetch_array();
|
|
|
|
if($stud_status['status'] == '0'){
|
|
|
|
echo "
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">
|
|
<link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\">
|
|
<title>Anmeldungen noch nicht möglich!</title>
|
|
</head>
|
|
<body>
|
|
<table border=\"0\" style=\"border-collapse: collapse\" width=\"100%\" cellpadding=\"0\" height=\"100%\" id=\"table1\">
|
|
<tr>
|
|
<td>
|
|
<div align=\"center\">
|
|
<table cellspacing=\"0\" cellpadding=\"0\" width=\"550\" border=\"0\">
|
|
<tr>
|
|
<td width=\"10\" background=\"../images/box_e1.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"3%\" background=\"../images/box_top.gif\" valign=\"top\"></td>
|
|
<td width=\"95%\" background=\"../images/box_top.gif\">
|
|
<img height=\"10\" src=\"../images/blank.gif\" width=\"1\"><br>
|
|
<span class=\"sh\">Anmeldungen nicht möglich!</span><br>
|
|
<img height=\"5\" src=\"../images/blank.gif\" width=\"1\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e2.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width=\"1%\" background=\"../images/box_l.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td colspan=\"2\"><br>
|
|
<p align=\"center\"><b>Sie haben bereits die Erstanträge gespeichert<br>
|
|
Es sind nur noch Änderungsanträge möglich</b>
|
|
</p>
|
|
<p align=\"center\"><a href=\"hauptframe.php\">
|
|
<img border=\"0\" src=\"../images/zurueck.gif\" width=\"77\" height=\"22\"></a><br>
|
|
</p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p><br>
|
|
</p>
|
|
</td>
|
|
<td width=\"1%\" background=\"../images/box_r.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"1%\" background=\"../images/box_e3.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"../images/box_bottom.gif\" colspan=\"2\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"8\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e4.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"> </td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>";
|
|
exit;
|
|
}
|
|
#################
|
|
|
|
|
|
// Prüfen, ob Studenten das 12 Block Antragsformular bekommen oder nicht
|
|
$result_aus = $db->query("SELECT 1 FROM stan_ausnahme WHERE uid=\"$uid1\"");
|
|
$rowaus = $result_aus->fetch_array();
|
|
// Select Ende
|
|
|
|
|
|
$back = $_GET['back'];
|
|
function get_data($pos, $uid1, $back){
|
|
# $back: Beim zurückbutton sollen Cookies verwendet werden, nicht DB Einträge
|
|
if($back == 1){
|
|
# Cookies
|
|
$stellenart = $_COOKIE["ck_stellenart".$pos];
|
|
$abteilung = $_COOKIE["ck_abteilung".$pos];
|
|
$tel_abteilung = $_COOKIE["ck_telabteilung".$pos];
|
|
$bezeichnung = $_COOKIE["ck_bezeichnung".$pos];
|
|
$str = $_COOKIE["ck_str".$pos];
|
|
$plz = $_COOKIE["ck_plz".$pos];
|
|
$postfach = $_COOKIE["ck_postfach".$pos];
|
|
$plz_postfach = $_COOKIE["ck_plz_postfach".$pos];
|
|
$ort = $_COOKIE["ck_ort".$pos];
|
|
$bundesland = $_COOKIE["ck_bundesland".$pos];
|
|
$staat = $_COOKIE["ck_staat".$pos];
|
|
if($pos == 1 or $pos == 2 or $pos == 3){
|
|
$vertname = "vert1";
|
|
}
|
|
if($pos == 4 or $pos == 5 or $pos == 6){
|
|
$vertname = "vert2";
|
|
}
|
|
if($pos == 7 or $pos == 8 or $pos == 9){
|
|
$vertname = "vert3";
|
|
}
|
|
if($pos == 10 or $pos == 11 or $pos == 12){
|
|
$vertname = "vert4";
|
|
}
|
|
$$vertname = $_COOKIE["ck_".$vertname];
|
|
$beg_tag = $_COOKIE["ck_beg_tag".$pos];
|
|
$beg_mon = $_COOKIE["ck_beg_mon".$pos];
|
|
$beg_jahr = $_COOKIE["ck_beg_jahr".$pos];
|
|
$end_tag = $_COOKIE["ck_ende_tag".$pos];
|
|
$end_mon = $_COOKIE["ck_ende_mon".$pos];
|
|
$end_jahr = $_COOKIE["ck_ende_jahr".$pos];
|
|
$maildst = $_COOKIE["ck_maildst".$pos];
|
|
$dummy_dst = $_COOKIE["ck_dummy_dst".$pos];
|
|
|
|
}else{
|
|
# Datenbankeinträge verwenden
|
|
global $db;
|
|
$result_data = $db->query("SELECT 1
|
|
FROM stan_ausnahme WHERE uid=\"$uid1\"");
|
|
$rowdata = $result_data->fetch_array();
|
|
|
|
$result_data1 = $db->query("SELECT t1.vert_bereich
|
|
, t1.art
|
|
, dummy_dst
|
|
, t1.dst_id
|
|
, DATE_Format(t1.beginn, '%d')AS beg_tag
|
|
, DATE_Format(t1.beginn, '%m')AS beg_mon
|
|
, DATE_Format(t1.beginn, '%Y')AS beg_jahr
|
|
, DATE_Format(t1.ende, '%d')AS end_tag
|
|
, DATE_Format(t1.ende, '%m')AS end_mon
|
|
, DATE_Format(t1.ende, '%Y')AS end_jahr
|
|
, t1.abteilung
|
|
, t1.tel_abteilung
|
|
, t1.entfernung
|
|
, t1.ledig
|
|
, t1.hausstand
|
|
FROM stan_antrag t1
|
|
WHERE t1.status = (
|
|
SELECT MAX(t2.status)
|
|
FROM stan_antrag t2
|
|
WHERE t1.aendid = t2.aendid
|
|
)
|
|
AND t1.uid = '$uid1'
|
|
AND t1.pos='$pos'
|
|
AND (t1.zuweisung is NULL or t1.zuweisung='' or t1.zuweisung='Z')
|
|
");
|
|
$rowdata1 = $result_data1->fetch_array();
|
|
|
|
$result_data2 = $db->query("SELECT distinct 1 FROM stan_dienststellen WHERE dst_id= '$rowdata1[dst_id]'");
|
|
$rowdata2 = $result_data2->fetch_array();
|
|
|
|
if($rowdata2[0] == '1'){
|
|
$result_data3 = $db->query("SELECT bez
|
|
, str
|
|
, plz
|
|
, postfach
|
|
, plz_postfach
|
|
, ort
|
|
, bundesland
|
|
, staat
|
|
, mail
|
|
FROM stan_dienststellen
|
|
WHERE dst_id='$rowdata1[dst_id]'");
|
|
$rowdata3 = $result_data3->fetch_array();
|
|
|
|
}else{
|
|
|
|
$result_data3 = $db->query("SELECT bez
|
|
, str
|
|
, plz
|
|
, postfach
|
|
, plz_postfach
|
|
, ort
|
|
, bundesland
|
|
, staat
|
|
, mail
|
|
FROM stan_dienststellen_tmp
|
|
WHERE dst_id='$rowdata1[dst_id]'");
|
|
$rowdata3 = $result_data3->fetch_array();
|
|
}
|
|
|
|
$stellenart = $rowdata1['art'];
|
|
$dummy_dst = $rowdata1['dummy_dst'];
|
|
$abteilung = $rowdata1['abteilung'];
|
|
$tel_abteilung = $rowdata1['tel_abteilung'];
|
|
$bezeichnung = $rowdata3['bez'];
|
|
$str = $rowdata3['str'];
|
|
$plz = $rowdata3['plz'];
|
|
$postfach = $rowdata3['postfach'];
|
|
$plz_postfach = $rowdata3['plz_postfach'];
|
|
$ort = $rowdata3['ort'];
|
|
$bundesland = $rowdata3['bundesland'];
|
|
$staat = $rowdata3['staat'];
|
|
$maildst = $rowdata3['mail'];
|
|
|
|
$entfernung = $rowdata1['entfernung'];
|
|
$ledig = $rowdata1['ledig'];
|
|
$hausstand = $rowdata1['hausstand'];
|
|
if($entfernung == 'N'){
|
|
# 3 Stufige Abfrage: Wenn Entfernung < 30KM also Nein, dann werden die anderen Felder nicht mehr abgefragt, so sind ledig und Hausstand auch Nein
|
|
$ledig = 'N';
|
|
$hausstand = 'N';
|
|
}
|
|
if($ledig == 'N'){
|
|
# 3 Stufige Abfrage: Wenn Entfernung < 30KM also Nein, dann werden die anderen Felder nicht mehr abgefragt, so sind ledig und Hausstand auch Nein
|
|
$hausstand = 'N';
|
|
}
|
|
|
|
if($pos == 1 or $pos == 2 or $pos == 3){
|
|
$result_data4 = $db->query("SELECT distinct saaid, vert_bereich FROM stan_antrag WHERE pos IN ('1', '2', '3') AND uid ='$uid1' ORDER BY saaid DESC LIMIT 1");
|
|
$rowdata4 = $result_data4->fetch_array();
|
|
$vertname = "vert1";
|
|
}
|
|
|
|
if($pos == 4 or $pos == 5 or $pos == 6){
|
|
$result_data4 = $db->query("SELECT distinct saaid, vert_bereich FROM stan_antrag WHERE pos IN ('4', '5', '6') AND uid ='$uid1' ORDER BY saaid DESC LIMIT 1");
|
|
$rowdata4 = $result_data4->fetch_array();
|
|
$vertname = "vert2";
|
|
}
|
|
|
|
if($pos == 7 or $pos == 8 or $pos == 9){
|
|
$result_data4 = $db->query("SELECT distinct saaid, vert_bereich FROM stan_antrag WHERE pos IN ('7', '8', '9') AND uid ='$uid1' ORDER BY saaid DESC LIMIT 1");
|
|
$rowdata4 = $result_data4->fetch_array();
|
|
$vertname = "vert3";
|
|
}
|
|
|
|
if($pos == 10 or $pos == 11 or $pos == 12){
|
|
$result_data4 = $db->query("SELECT distinct saaid, vert_bereich FROM stan_antrag WHERE pos IN ('10', '11', '12') AND uid ='$uid1' ORDER BY saaid DESC LIMIT 1");
|
|
$rowdata4 = $result_data4->fetch_array();
|
|
$vertname = "vert4";
|
|
}
|
|
|
|
|
|
$$vertname = $rowdata4["vert_bereich"];
|
|
$beg_tag = $rowdata1['beg_tag'];
|
|
$beg_mon = $rowdata1['beg_mon'];
|
|
$beg_jahr = $rowdata1['beg_jahr'];
|
|
$end_tag = $rowdata1['end_tag'];
|
|
$end_mon = $rowdata1['end_mon'];
|
|
$end_jahr = $rowdata1['end_jahr'];
|
|
}
|
|
return array( $stellenart
|
|
, $abteilung
|
|
, $tel_abteilung
|
|
, $bezeichnung
|
|
, $str
|
|
, $plz
|
|
, $postfach
|
|
, $plz_postfach
|
|
, $ort
|
|
, $bundesland
|
|
, $staat
|
|
, $$vertname
|
|
, $beg_tag
|
|
, $beg_mon
|
|
, $beg_jahr
|
|
, $end_tag
|
|
, $end_mon
|
|
, $end_jahr
|
|
, $maildst
|
|
, $dummy_dst
|
|
, $entfernung
|
|
, $ledig
|
|
, $hausstand
|
|
);
|
|
} // End Function
|
|
|
|
|
|
|
|
|
|
if (isset($_GET['action']))
|
|
$action = $_GET['action'];
|
|
else
|
|
$action = "";
|
|
|
|
switch($action){
|
|
default:
|
|
|
|
$db = dbconnect();
|
|
$result = $db->query("SELECT nachname, vorname, jahrgang, stg FROM stud where uid=\"$uid1\"");
|
|
$row = $result->fetch_array();
|
|
|
|
$anm_schluss = $db->query("SELECT DATE_Format(anmeldeschluss, '%d.%m.%Y um %H:%i:%s Uhr') anmeldeschluss, DATE_Format(antrag_von, '%d.%m.%Y') antrag_von, DATE_Format(antrag_bis, '%d.%m.%Y') antrag_bis
|
|
FROM stan_frist
|
|
WHERE jahrgang='$row[jahrgang]'");
|
|
$row_schluss = $anm_schluss->fetch_array(); // Auslesen des Datenbankdatum, um davon ein Tag abziehen zu können
|
|
|
|
|
|
|
|
echo"
|
|
<html>
|
|
<head>
|
|
<script src=\"../js/dayjs.min.js\"></script>
|
|
<link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\">
|
|
<script type=\"text/javascript\" src=\"livesearch/ajax.js\"></script>
|
|
<script type=\"text/javascript\" src=\"livesearch/ajax-dynamic-list.js\">
|
|
/************************************************************************************************************
|
|
(C) www.dhtmlgoodies.com, April 2006
|
|
|
|
This is a script from www.dhtmlgoodies.com. You will find this and a lot of other scripts at our website.
|
|
|
|
Terms of use:
|
|
You are free to use this script as long as the copyright message is kept intact. However, you may not
|
|
redistribute, sell or repost it without our permission.
|
|
|
|
Thank you!
|
|
|
|
www.dhtmlgoodies.com
|
|
Alf Magne Kalleland
|
|
|
|
************************************************************************************************************/
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<!-- Kalender Beginn // -->
|
|
<link rel='stylesheet' href='dynCalendar.css' type='text/css' media='screen'>
|
|
<script src='browserSniffer.js' type='text/javascript' language='javascript'></script>
|
|
<script src='dynCalendar.js' type='text/javascript' language='javascript'></script>
|
|
<script type='text/javascript'>
|
|
<!--
|
|
// Calendar callback. When a date is clicked on the calendar
|
|
// this function is called so you can do as you want with it
|
|
function calendarCallback(date, month, year, pos)
|
|
{
|
|
if(date<10){date='0'+date;}
|
|
if(month<10){month='0'+month;}
|
|
date_tag = date;
|
|
date_mon = month;
|
|
date_jahr = year;
|
|
document.getElementById('beg_tag'+pos).value = date_tag;
|
|
document.getElementById('beg_mon'+pos).value = date_mon;
|
|
document.getElementById('beg_jahr'+pos).value = date_jahr;
|
|
func_monate(pos);
|
|
|
|
}
|
|
|
|
function calendarCallback_end(date, month, year, pos)
|
|
{
|
|
if(date<10){date='0'+date;}
|
|
if(month<10){month='0'+month;}
|
|
date_tag = date;
|
|
date_mon = month;
|
|
date_jahr = year;
|
|
document.getElementById('ende_tag'+pos).value = date_tag;
|
|
document.getElementById('ende_mon'+pos).value = date_mon;
|
|
document.getElementById('ende_jahr'+pos).value = date_jahr;
|
|
func_monate(pos);
|
|
}
|
|
// -->
|
|
</script>
|
|
<!-- Kalender Ende // -->
|
|
|
|
|
|
<script type=\"text/javascript\" src=\"./overlib/overlibmws.js\"><!-- overLIB (c) Erik Bosrup --></script>
|
|
<script type=\"text/javascript\">
|
|
<!--
|
|
OLregisterPlugins('crossframe','iframe','hide','shadow');
|
|
overlib=parent.overlib;
|
|
nd=parent.nd;
|
|
if (typeof window.createPopup!='undefined') {
|
|
var oPopup = window.createPopup();
|
|
var oPopupBody = oPopup.document.body;
|
|
oPopupBody.style.backgroundColor = \"#ccccff\";
|
|
oPopupBody.style.border = \"solid blue 1px\";
|
|
}
|
|
|
|
// -->
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style type=\"text/css\">
|
|
.text_overlib {font-family:Verdana,Arial,sans-serif; font-size:10px;}
|
|
.r{text-decoration: none;font-weight: bold; color: black;}
|
|
.text_overlib {font-family:Verdana,Arial,sans-serif; font-size:10px;}
|
|
.select_form{
|
|
width:325px;
|
|
}
|
|
|
|
|
|
/* Big box with list of options */
|
|
#ajax_listOfOptions{
|
|
position:absolute; /* Never change this one */
|
|
width:324px; /* Width of box */
|
|
height:200px; /* Height of box */
|
|
overflow:auto; /* Scrolling features */
|
|
border:1px solid #6487DC; /* Dark blue border */
|
|
background-color:#FFF; /* White background color */
|
|
text-align:left;
|
|
font-family : verdana, arial;
|
|
z-index:10000;
|
|
}
|
|
#ajax_listOfOptions div{ /* General rule for both .optionDiv and .optionDivSelected */
|
|
margin:1px;
|
|
padding:1px;
|
|
cursor:pointer;
|
|
font-size:0.9em;
|
|
}
|
|
#ajax_listOfOptions .optionDiv{ /* Div for each item in list */
|
|
|
|
}
|
|
#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
|
|
background-color:#D6DFF7;
|
|
color:#002276;
|
|
font-family : verdana, arial;
|
|
font-weight : bold;
|
|
}
|
|
#ajax_listOfOptions_iframe{
|
|
background-color:#F00;
|
|
position:absolute;
|
|
z-index:500;
|
|
}
|
|
|
|
form{
|
|
display:inline;
|
|
}
|
|
|
|
</style>
|
|
|
|
<script type='text/javascript'>
|
|
function ausblenden_aktiv(pos){
|
|
if ( document.getElementById('dummy_dst'+pos).checked == true ){
|
|
document.getElementById('bezeichnung'+pos).disabled = true;
|
|
document.getElementById('str'+pos).disabled = true;
|
|
document.getElementById('plz'+pos).disabled = true;
|
|
document.getElementById('ort'+pos).disabled = true;
|
|
document.getElementById('plz_postfach'+pos).disabled = true;
|
|
document.getElementById('postfach'+pos).disabled = true;
|
|
document.getElementById('bundesland'+pos).disabled = true;
|
|
document.getElementById('staat'+pos).disabled = true;
|
|
document.getElementById('maildst'+pos).disabled = true;
|
|
document.getElementById('entfernung'+pos+'_ja').disabled = true;
|
|
document.getElementById('entfernung'+pos+'_nein').disabled = true;
|
|
document.getElementById('ledig'+pos+'_ja').disabled = true;
|
|
document.getElementById('ledig'+pos+'_nein').disabled = true;
|
|
document.getElementById('hausstand'+pos+'_ja').disabled = true;
|
|
document.getElementById('hausstand'+pos+'_nein').disabled = true;
|
|
}else{
|
|
document.getElementById('bezeichnung'+pos).disabled = false;
|
|
document.getElementById('str'+pos).disabled = false;
|
|
document.getElementById('plz'+pos).disabled = false;
|
|
document.getElementById('ort'+pos).disabled = false;
|
|
document.getElementById('plz_postfach'+pos).disabled = false;
|
|
document.getElementById('postfach'+pos).disabled = false;
|
|
document.getElementById('bundesland'+pos).disabled = false;
|
|
document.getElementById('staat'+pos).disabled = false;
|
|
document.getElementById('maildst'+pos).disabled = false;
|
|
document.getElementById('entfernung'+pos+'_ja').disabled = false;
|
|
document.getElementById('entfernung'+pos+'_nein').disabled = false;
|
|
if(document.getElementById('ledig'+pos+'_ja').value == 'J'){
|
|
document.getElementById('ledig'+pos+'_ja').disabled = false;
|
|
}
|
|
if(document.getElementById('hausstand'+pos+'_ja').value == 'J'){
|
|
document.getElementById('hausstand'+pos+'_ja').disabled = false;
|
|
}
|
|
func_monate(pos);
|
|
}
|
|
|
|
}
|
|
|
|
function ausblenden_start(pos){
|
|
document.getElementById('bezeichnung'+pos).disabled = true;
|
|
document.getElementById('str'+pos).disabled = true;
|
|
document.getElementById('plz'+pos).disabled = true;
|
|
document.getElementById('ort'+pos).disabled = true;
|
|
document.getElementById('plz_postfach'+pos).disabled = true;
|
|
document.getElementById('postfach'+pos).disabled = true;
|
|
document.getElementById('bundesland'+pos).disabled = true;
|
|
document.getElementById('staat'+pos).disabled = true;
|
|
document.getElementById('maildst'+pos).disabled = true;
|
|
}
|
|
|
|
function umzug_ausblenden(){
|
|
func_monate(1);
|
|
if(document.getElementById('entfernung1_ja').checked == false && document.getElementById('entfernung1_nein').checked == false){
|
|
document.getElementById('entfernung1_ja').disabled = true;
|
|
document.getElementById('entfernung1_nein').disabled = true;
|
|
document.getElementById('ledig1_ja').disabled = true;
|
|
document.getElementById('ledig1_nein').disabled = true;
|
|
document.getElementById('hausstand1_ja').disabled = true;
|
|
document.getElementById('hausstand1_nein').disabled = true;
|
|
document.getElementById('msg_umzug1').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
/* Elemente 2,3,5,6,8,9,11,12 sind nur mit Ausnahmeregelung verfügbar. Daher werden sie ggf. nicht geprüft. Sonst Fehler wenn sie nicht vorhanden sind*/
|
|
var element2_ja = document.getElementById('entfernung2_ja');
|
|
var element2_nein = document.getElementById('entfernung2_nein');
|
|
if (typeof(element2_ja) != 'undefined' && element2_ja != null && typeof(element2_nein) != 'undefined' && element2_nein != null){
|
|
func_monate(2);
|
|
if(document.getElementById('entfernung2_ja').checked == false && document.getElementById('entfernung2_nein').checked == false){
|
|
document.getElementById('entfernung2_ja').disabled = true;
|
|
document.getElementById('entfernung2_nein').disabled = true;
|
|
document.getElementById('ledig2_ja').disabled = true;
|
|
document.getElementById('ledig2_nein').disabled = true;
|
|
document.getElementById('hausstand2_ja').disabled = true;
|
|
document.getElementById('hausstand2_nein').disabled = true;
|
|
document.getElementById('msg_umzug2').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
var element3_ja = document.getElementById('entfernung3_ja');
|
|
var element3_nein = document.getElementById('entfernung3_nein');
|
|
if (typeof(element3_ja) != 'undefined' && element3_ja != null && typeof(element3_nein) != 'undefined' && element3_nein != null){
|
|
func_monate(3);
|
|
if(document.getElementById('entfernung3_ja').checked == false && document.getElementById('entfernung3_nein').checked == false){
|
|
document.getElementById('entfernung3_ja').disabled = true;
|
|
document.getElementById('entfernung3_nein').disabled = true;
|
|
document.getElementById('ledig3_ja').disabled = true;
|
|
document.getElementById('ledig3_nein').disabled = true;
|
|
document.getElementById('hausstand3_ja').disabled = true;
|
|
document.getElementById('hausstand3_nein').disabled = true;
|
|
document.getElementById('msg_umzug3').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
|
|
func_monate(4);
|
|
if(document.getElementById('entfernung4_ja').checked == false && document.getElementById('entfernung4_nein').checked == false){
|
|
document.getElementById('entfernung4_ja').disabled = true;
|
|
document.getElementById('entfernung4_nein').disabled = true;
|
|
document.getElementById('ledig4_ja').disabled = true;
|
|
document.getElementById('ledig4_nein').disabled = true;
|
|
document.getElementById('hausstand4_ja').disabled = true;
|
|
document.getElementById('hausstand4_nein').disabled = true;
|
|
document.getElementById('msg_umzug4').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
var element5_ja = document.getElementById('entfernung5_ja');
|
|
var element5_nein = document.getElementById('entfernung5_nein');
|
|
if (typeof(element5_ja) != 'undefined' && element5_ja != null && typeof(element5_nein) != 'undefined' && element5_nein != null){
|
|
func_monate(5);
|
|
if(document.getElementById('entfernung5_ja').checked == false && document.getElementById('entfernung5_nein').checked == false){
|
|
document.getElementById('entfernung5_ja').disabled = true;
|
|
document.getElementById('entfernung5_nein').disabled = true;
|
|
document.getElementById('ledig5_ja').disabled = true;
|
|
document.getElementById('ledig5_nein').disabled = true;
|
|
document.getElementById('hausstand5_ja').disabled = true;
|
|
document.getElementById('hausstand5_nein').disabled = true;
|
|
document.getElementById('msg_umzug5').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
var element6_ja = document.getElementById('entfernung6_ja');
|
|
var element6_nein = document.getElementById('entfernung6_nein');
|
|
if (typeof(element6_ja) != 'undefined' && element6_ja != null && typeof(element6_nein) != 'undefined' && element6_nein != null){
|
|
func_monate(6);
|
|
if(document.getElementById('entfernung6_ja').checked == false && document.getElementById('entfernung6_nein').checked == false){
|
|
document.getElementById('entfernung6_ja').disabled = true;
|
|
document.getElementById('entfernung6_nein').disabled = true;
|
|
document.getElementById('ledig6_ja').disabled = true;
|
|
document.getElementById('ledig6_nein').disabled = true;
|
|
document.getElementById('hausstand6_ja').disabled = true;
|
|
document.getElementById('hausstand6_nein').disabled = true;
|
|
document.getElementById('msg_umzug6').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
|
|
func_monate(7);
|
|
if(document.getElementById('entfernung7_ja').checked == false && document.getElementById('entfernung7_nein').checked == false){
|
|
document.getElementById('entfernung7_ja').disabled = true;
|
|
document.getElementById('entfernung7_nein').disabled = true;
|
|
document.getElementById('ledig7_ja').disabled = true;
|
|
document.getElementById('ledig7_nein').disabled = true;
|
|
document.getElementById('hausstand7_ja').disabled = true;
|
|
document.getElementById('hausstand7_nein').disabled = true;
|
|
document.getElementById('msg_umzug7').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
var element8_ja = document.getElementById('entfernung8_ja');
|
|
var element8_nein = document.getElementById('entfernung8_nein');
|
|
if (typeof(element8_ja) != 'undefined' && element8_ja != null && typeof(element8_nein) != 'undefined' && element8_nein != null){
|
|
func_monate(8);
|
|
if(document.getElementById('entfernung8_ja').checked == false && document.getElementById('entfernung8_nein').checked == false){
|
|
document.getElementById('entfernung8_ja').disabled = true;
|
|
document.getElementById('entfernung8_nein').disabled = true;
|
|
document.getElementById('ledig8_ja').disabled = true;
|
|
document.getElementById('ledig8_nein').disabled = true;
|
|
document.getElementById('hausstand8_ja').disabled = true;
|
|
document.getElementById('hausstand8_nein').disabled = true;
|
|
document.getElementById('msg_umzug8').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
var element9_ja = document.getElementById('entfernung9_ja');
|
|
var element9_nein = document.getElementById('entfernung9_nein');
|
|
if (typeof(element9_ja) != 'undefined' && element9_ja != null && typeof(element9_nein) != 'undefined' && element9_nein != null){
|
|
func_monate(9);
|
|
if(document.getElementById('entfernung9_ja').checked == false && document.getElementById('entfernung9_nein').checked == false){
|
|
document.getElementById('entfernung9_ja').disabled = true;
|
|
document.getElementById('entfernung9_nein').disabled = true;
|
|
document.getElementById('ledig9_ja').disabled = true;
|
|
document.getElementById('ledig9_nein').disabled = true;
|
|
document.getElementById('hausstand9_ja').disabled = true;
|
|
document.getElementById('hausstand9_nein').disabled = true;
|
|
document.getElementById('msg_umzug9').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
|
|
func_monate(10);
|
|
if(document.getElementById('entfernung10_ja').checked == false && document.getElementById('entfernung10_nein').checked == false){
|
|
document.getElementById('entfernung10_ja').disabled = true;
|
|
document.getElementById('entfernung10_nein').disabled = true;
|
|
document.getElementById('ledig10_ja').disabled = true;
|
|
document.getElementById('ledig10_nein').disabled = true;
|
|
document.getElementById('hausstand10_ja').disabled = true;
|
|
document.getElementById('hausstand10_nein').disabled = true;
|
|
document.getElementById('msg_umzug10').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
var element11_ja = document.getElementById('entfernung11_ja');
|
|
var element11_nein = document.getElementById('entfernung11_nein');
|
|
if (typeof(element11_ja) != 'undefined' && element11_ja != null && typeof(element11_nein) != 'undefined' && element11_nein != null){
|
|
func_monate(11);
|
|
if(document.getElementById('entfernung11_ja').checked == false && document.getElementById('entfernung11_nein').checked == false){
|
|
document.getElementById('entfernung11_ja').disabled = true;
|
|
document.getElementById('entfernung11_nein').disabled = true;
|
|
document.getElementById('ledig11_ja').disabled = true;
|
|
document.getElementById('ledig11_nein').disabled = true;
|
|
document.getElementById('hausstand11_ja').disabled = true;
|
|
document.getElementById('hausstand11_nein').disabled = true;
|
|
document.getElementById('msg_umzug11').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
var element12_ja = document.getElementById('entfernung12_ja');
|
|
var element12_nein = document.getElementById('entfernung12_nein');
|
|
if (typeof(element12_ja) != 'undefined' && element12_ja != null && typeof(element12_nein) != 'undefined' && element12_nein != null){
|
|
func_monate(12);
|
|
if(document.getElementById('entfernung12_ja').checked == false && document.getElementById('entfernung12_nein').checked == false){
|
|
document.getElementById('entfernung12_ja').disabled = true;
|
|
document.getElementById('entfernung12_nein').disabled = true;
|
|
document.getElementById('ledig12_ja').disabled = true;
|
|
document.getElementById('ledig12_nein').disabled = true;
|
|
document.getElementById('hausstand12_ja').disabled = true;
|
|
document.getElementById('hausstand12_nein').disabled = true;
|
|
document.getElementById('msg_umzug12').innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
}
|
|
}
|
|
}
|
|
function enable_ledig(pos){
|
|
document.getElementById('ledig'+pos+'_ja').disabled = false;
|
|
document.getElementById('ledig'+pos+'_nein').disabled = false;
|
|
ergebnis_umzug(pos);
|
|
}
|
|
function disable_ledig(pos){
|
|
document.getElementById('ledig'+pos+'_ja').disabled = true;
|
|
document.getElementById('ledig'+pos+'_nein').disabled = true;
|
|
document.getElementById('hausstand'+pos+'_ja').disabled = true;
|
|
document.getElementById('hausstand'+pos+'_nein').disabled = true
|
|
ergebnis_umzug(pos);
|
|
}
|
|
function enable_hausstand(pos){
|
|
document.getElementById('hausstand'+pos+'_ja').disabled = false;
|
|
document.getElementById('hausstand'+pos+'_nein').disabled = false;
|
|
ergebnis_umzug(pos);
|
|
}
|
|
function disable_hausstand(pos){
|
|
document.getElementById('hausstand'+pos+'_ja').disabled = true;
|
|
document.getElementById('hausstand'+pos+'_nein').disabled = true;
|
|
ergebnis_umzug(pos);
|
|
}
|
|
function ergebnis_umzug(pos){
|
|
// Vergütung wenn, Entfernung:ja, Ledig:ja, Hausstand:nein
|
|
var entfernung_ja = document.getElementById('entfernung'+pos+'_ja').checked
|
|
var ledig_ja = document.getElementById('ledig'+pos+'_ja').checked
|
|
var hausstand_nein = document.getElementById('hausstand'+pos+'_nein').checked
|
|
if(entfernung_ja && ledig_ja && hausstand_nein){
|
|
document.getElementById('msg'+pos).innerHTML = \"<font color='green'><b>Ergebnis: Umzugsvergütung genehmigt</b></font>\";
|
|
}else{
|
|
document.getElementById('msg'+pos).innerHTML = \"<font color='red'><b>Ergebnis: Umzugsvergütung nicht genehmigt</b></font>\";
|
|
}
|
|
}
|
|
function func_monate(pos){
|
|
var beg_tag = document.getElementById('beg_tag'+pos).value;
|
|
var beg_mon = document.getElementById('beg_mon'+pos).value;
|
|
var beg_jahr = document.getElementById('beg_jahr'+pos).value;
|
|
var ende_tag = document.getElementById('ende_tag'+pos).value;
|
|
var ende_mon = document.getElementById('ende_mon'+pos).value;
|
|
var ende_jahr = document.getElementById('ende_jahr'+pos).value;
|
|
|
|
const zeit_beginn = dayjs(beg_jahr+'-'+beg_mon+'-'+beg_tag)
|
|
const zeit_ende = dayjs(ende_jahr+'-'+ende_mon+'-'+ende_tag)
|
|
zeit_ende_neu = zeit_ende.add(1, 'day')
|
|
zeit_ende_neu.diff(zeit_beginn) // 20214000000 default milliseconds
|
|
if(zeit_ende_neu.diff(zeit_beginn,'month',true) >3){
|
|
document.getElementById('msg_umzug'+pos).innerHTML = \"<font color='green'><b>Antragsmöglichkeit prüfen</b></font>\";
|
|
document.getElementById('entfernung'+pos+'_ja').disabled = false;
|
|
document.getElementById('entfernung'+pos+'_nein').disabled = false;
|
|
}else{
|
|
document.getElementById('msg_umzug'+pos).innerHTML = \"<font color='red'><b>Keine Umzugskostenzusage, da Praktikum nicht länger als 3 Monate.</b></font>\";
|
|
document.getElementById('entfernung'+pos+'_nein').checked = true;
|
|
document.getElementById('ledig'+pos+'_nein').checked = true;
|
|
document.getElementById('hausstand'+pos+'_nein').checked = true;
|
|
document.getElementById('entfernung'+pos+'_ja').disabled = true;
|
|
document.getElementById('entfernung'+pos+'_nein').disabled = true;
|
|
document.getElementById('ledig'+pos+'_ja').disabled = true;
|
|
document.getElementById('ledig'+pos+'_nein').disabled = true;
|
|
document.getElementById('hausstand'+pos+'_ja').disabled = true;
|
|
document.getElementById('hausstand'+pos+'_nein').disabled = true;
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body onload='umzug_ausblenden();'>
|
|
|
|
<div id=\"overDiv\" style=\"position: absolute; visibility: hidden; z-index: 1000; left: 10px; top: 0px; background-image: none;\"></div>
|
|
<table cellspacing='0' cellpadding='0' width='100%' border='0'>
|
|
<tr>
|
|
|
|
<td width=\"10\" background=\"../images/box_e1.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"../images/box_top.gif\" valign=\"top\">
|
|
<img height=\"10\" src=\"../images/blank.gif\" width=\"1\"><br>
|
|
<font class=\"hd\">Stellenantrag für $row[vorname] $row[nachname]</font><br>
|
|
<span class='sh'>Anträge können bis zum <font color='red'><b>$row_schluss[0]</b></font> abgegeben werden<br>
|
|
Antragszeitraum: <font color='red'><b>$row_schluss[antrag_von] - $row_schluss[antrag_bis]</b></font>
|
|
</span>
|
|
<img height=\"5\" src=\"../images/blank.gif\" width=\"1\"></font></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e2.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width='1%' background='../images/box_l.gif'>
|
|
<img height='1' src='../images/blank.gif' width='22'>
|
|
</td>
|
|
<td>
|
|
|
|
<form action="; echo $_SERVER['PHP_SELF'] . "?action=persdat"; echo" method=\"POST\" name='searchform'>";
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
|
|
|
|
$data = get_data('1', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
|
|
<br>
|
|
<table cellspacing='0' width='100%' bgcolor=#6487DC>
|
|
<tr >
|
|
<td colspan='2' width='40%' style='border-style: none; border-width: medium' height='0'>
|
|
<font color='#FFFFFF'><b>Vertiefungsbereich 1:</b></font>
|
|
</td>
|
|
|
|
<td width='60%' style='border-style: none; border-width: medium' height='100'>
|
|
";
|
|
$db = dbconnect();
|
|
|
|
|
|
$query1 = "SELECT vbid, bezeichnung
|
|
FROM stan_vertiefungsbereich
|
|
ORDER BY bezeichnung ASC
|
|
";
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"vert1\">
|
|
|
|
|
|
<option value='x' selected>Bitte wählen Sie einen Vertiefungsbereich </option>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
|
|
echo "<option value='$row1[vbid]'";if($row1['vbid'] == $vert){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
|
|
<input type='hidden' name='pos1' value='1' id='pos1' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart1\" id='stellenart1'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst1' "; if($dummy_dst != ''){echo " checked ";} echo "onclick='ausblenden_aktiv(1);' id='dummy_dst1' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
<!--<input type='text' name='bezeichnung1'id='bezeichnung1' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung1\" name=\"bezeichnung1\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'1')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden1\" name=\"bezeichnung_ID1\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str1' name='str1' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz1' id='plz1' value='$plz' size='5'> <input type='text' name='ort1' value='$ort' id='ort1' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach1' value='$plz_postfach' id='plz_postfach1' size='5'> <input type='text' name='postfach1' value='$postfach' id='postfach1' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland1' value='$bundesland' id='bundesland1' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat1' value='$staat' id='staat1' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst1' value='$maildst' id='maildst1' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag1' id='beg_tag1' value='$beg_tag' size=1 onblur='func_monate(1);'>.<input type='text' name='beg_mon1' id='beg_mon1'value='$beg_mon' size=1 onblur='func_monate(1);'>.<input type='text' name='beg_jahr1' id='beg_jahr1' value='$beg_jahr' size=3 onblur='func_monate(1);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal1 = new dynCalendar('beg_cal1', 'calendarCallback', 'images/', '', '1');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag1' id='ende_tag1' value='$end_tag' size=1 onblur='func_monate(1);'>.<input type='text' name='ende_mon1' id='ende_mon1'value='$end_mon' size=1 onblur='func_monate(1);'>.<input type='text' name='ende_jahr1' id='ende_jahr1' value='$end_jahr' size=3 onblur='func_monate(1);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal1 = new dynCalendar('end_cal1', 'calendarCallback_end', 'images/', '', '1');
|
|
//-->
|
|
</script>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung1' value='$abteilung' id='abteilung1' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung1' value='$tel_abteilung' id='telabteilung1' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug1'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug1_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung1' value='J' id='entfernung1_ja' onclick='enable_ledig(1);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung1' value='N' id='entfernung1_nein' onclick='disable_ledig(1);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug1_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig1' value='J' id='ledig1_ja' onclick='enable_hausstand(1);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig1' value='N' id='ledig1_nein' onclick='disable_hausstand(1);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug1_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand1' value='J' id='hausstand1_ja' onclick='ergebnis_umzug(1);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand1' value='N' id='hausstand1_nein' onclick='ergebnis_umzug(1);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg1'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
|
|
|
|
<p align=right>";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(1);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(1);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(1);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(1);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(1);</script>";
|
|
}
|
|
|
|
if($rowaus[0] == '1'){ // wenn man 12 Blöcke angezeigt bekommen darf
|
|
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('2', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
|
|
echo"
|
|
</p>
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos2' value='2' id='pos2' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart2\" id='stellenart2'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst2' "; if($dummy_dst != ''){echo " checked ";} echo "onclick='ausblenden_aktiv(2);' id='dummy_dst2' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung2'id='bezeichnung2' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung2\" name=\"bezeichnung2\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'2')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden2\" name=\"bezeichnung_ID2\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str2' name='str2' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz2' id='plz2' value='$plz' size='5'> <input type='text' name='ort2' value='$ort' id='ort2' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach2' id='plz_postfach2' value='$plz_postfach' size='5'> <input type='text' name='postfach2' value='$postfach' id='postfach2' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland2' id='bundesland2' value='$bundesland' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat2' value='$staat' id='staat2' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst2' value='$maildst' id='maildst2' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag2' id='beg_tag2' value='$beg_tag' size=1 onblur='func_monate(2);'>.<input type='text' name='beg_mon2' id='beg_mon2'value='$beg_mon' size=1 onblur='func_monate(2);'>.<input type='text' name='beg_jahr2' id='beg_jahr2' value='$beg_jahr' size=3 onblur='func_monate(2);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal2 = new dynCalendar('beg_cal2', 'calendarCallback', 'datepicker/images/', '', '2');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag2' id='ende_tag2' value='$end_tag' size=1 onblur='func_monate(2);'>.<input type='text' name='ende_mon2' id='ende_mon2'value='$end_mon' size=1 onblur='func_monate(2);'>.<input type='text' name='ende_jahr2' id='ende_jahr2' value='$end_jahr' size=3 onblur='func_monate(2);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal2 = new dynCalendar('end_cal2', 'calendarCallback_end', 'images/', '', '2');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung2' value='$abteilung' id='abteilung2' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung2' value='$tel_abteilung' id='telabteilung2' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug2'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug2_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung2' value='J' id='entfernung2_ja' onclick='enable_ledig(2);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung2' value='N' id='entfernung2_nein' onclick='disable_ledig(2);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug2_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig2' value='J' id='ledig2_ja' onclick='enable_hausstand(2);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig2' value='N' id='ledig2_nein' onclick='disable_hausstand(2);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug2_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand2' value='J' id='hausstand2_ja' onclick='ergebnis_umzug(2);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand2' value='N' id='hausstand2_nein' onclick='ergebnis_umzug(2);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg2'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(2);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(2);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(2);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(2);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(2);</script>";
|
|
}
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('3', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
|
|
<br>
|
|
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos3' value='3' id='pos3' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart3\" id='stellenart3'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst3' "; if($dummy_dst != ''){echo " checked ";} echo "onclick='ausblenden_aktiv(3);' id='dummy_dst3' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung3'id='bezeichnung3' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung3\" name=\"bezeichnung3\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'3')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden3\" name=\"bezeichnung_ID3\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str3' name='str3' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz3' id='plz3' value='$plz' size='5'> <input type='text' name='ort3' value='$ort' id='ort3' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach3' value='$plz_postfach' id='plz_postfach3' size='5'> <input type='text' name='postfach3' value='$postfach' id='postfach3' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland3' value='$bundesland' id='bundesland3' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat3' value='$staat' id='staat3' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst3' value='$maildst' id='maildst3' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag3' id='beg_tag3' value='$beg_tag' size=1 onblur='func_monate(3);'>.<input type='text' name='beg_mon3' id='beg_mon3'value='$beg_mon' size=1 onblur='func_monate(3);'>.<input type='text' name='beg_jahr3' id='beg_jahr3' value='$beg_jahr' size=3 onblur='func_monate(3);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal3 = new dynCalendar('beg_cal3', 'calendarCallback', 'images/', '', '3');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag3' id='ende_tag3' value='$end_tag' size=1 onblur='func_monate(3);'>.<input type='text' name='ende_mon3' id='ende_mon3'value='$end_mon' size=1 onblur='func_monate(3);'>.<input type='text' name='ende_jahr3' id='ende_jahr3' value='$end_jahr' size=3 onblur='func_monate(3);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal3 = new dynCalendar('end_cal3', 'calendarCallback_end', 'images/', '', '3');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung3' value='$abteilung' id='abteilung3' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung3' value='$tel_abteilung' id='telabteilung3' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug3'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug3_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung3' value='J' id='entfernung3_ja' onclick='enable_ledig(3);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung3' value='N' id='entfernung3_nein' onclick='disable_ledig(3);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug3_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig3' value='J' id='ledig3_ja' onclick='enable_hausstand(3);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig3' value='N' id='ledig3_nein' onclick='disable_hausstand(3);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug3_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand3' value='J' id='hausstand3_ja' onclick='ergebnis_umzug(3);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand3' value='N' id='hausstand3_nein' onclick='ergebnis_umzug(3);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg3'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(3);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(3);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(3);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(3);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(3);</script>";
|
|
}
|
|
} // Endif($rowaus[0] == 1){; Wenn man Ausnahme hat, ob man 12 Block Feld angezeigt bekommt
|
|
|
|
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('4', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<!---------------------------------------------------------------------------------------
|
|
---------------------------------------------------------------------------------------->
|
|
<br>
|
|
<br>
|
|
|
|
<table cellspacing='0' width='100%' bgcolor=#6487DC>
|
|
<tr >
|
|
<td colspan='2' width='40%' style='border-style: none; border-width: medium' height='0'>
|
|
<font color='#FFFFFF'><b>Vertiefungsbereich 2:</b></font>
|
|
</td>
|
|
|
|
<td width='60%' style='border-style: none; border-width: medium' height='100'>
|
|
";
|
|
$db = dbconnect();
|
|
|
|
|
|
$query1 = "SELECT vbid, bezeichnung
|
|
FROM stan_vertiefungsbereich
|
|
ORDER BY bezeichnung ASC
|
|
";
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"vert2\">
|
|
<option value='x' selected>Bitte wählen Sie einen Vertiefungsbereich </option>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
|
|
echo "<option value='$row1[vbid]'";if($row1['vbid'] == $vert){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
echo"
|
|
</td></select>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos4' value='4' id='pos4' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
|
|
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart4\" id='stellenart4'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst4' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(4);' id='dummy_dst4' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung4'id='bezeichnung4' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung4\" name=\"bezeichnung4\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'4')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden4\" name=\"bezeichnung_ID4\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str4' name='str4' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz4' id='plz4' value='$plz' size='5'> <input type='text' name='ort4' value='$ort' id='ort4' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach4' id='plz_postfach4' value='$plz_postfach' size='5'> <input type='text' name='postfach4' value='$postfach' id='postfach4' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland4' value='$bundesland' id='bundesland4' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat4' value='$staat' id='staat4' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst4' value='$maildst' id='maildst4' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag4' id='beg_tag4' value='$beg_tag' size=1 onblur='func_monate(4);'>.<input type='text' name='beg_mon4' id='beg_mon4'value='$beg_mon' size=1 onblur='func_monate(4);'>.<input type='text' name='beg_jahr4' id='beg_jahr4' value='$beg_jahr' size=3 onblur='func_monate(4);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal4 = new dynCalendar('beg_cal4', 'calendarCallback', 'images/', '', '4');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag4' id='ende_tag4' value='$end_tag' size=1 onblur='func_monate(4);'>.<input type='text' name='ende_mon4' id='ende_mon4'value='$end_mon' size=1 onblur='func_monate(4);'>.<input type='text' name='ende_jahr4' id='ende_jahr4' value='$end_jahr' size=3 onblur='func_monate(4);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal4 = new dynCalendar('end_cal4', 'calendarCallback_end', 'images/', '', '4');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung4' value='$abteilung' id='abteilung4' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung4' value='$tel_abteilung' id='telabteilung4' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug4'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug4_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung4' value='J' id='entfernung4_ja' onclick='enable_ledig(4);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung4' value='N' id='entfernung4_nein' onclick='disable_ledig(4);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug4_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig4' value='J' id='ledig4_ja' onclick='enable_hausstand(4);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig4' value='N' id='ledig4_nein' onclick='disable_hausstand(4);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug4_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand4' value='J' id='hausstand4_ja' onclick='ergebnis_umzug(4);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand4' value='N' id='hausstand4_nein' onclick='ergebnis_umzug(4);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg4'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(4);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(4);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(4);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(4);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(4);</script>";
|
|
}
|
|
|
|
if($rowaus[0] == '1'){
|
|
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('5', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<br>
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos5' value='5' id='pos5' size='50'>
|
|
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart5\" id='stellenart5'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst5' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(5);' id='dummy_dst5' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung5'id='bezeichnung5' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung5\" name=\"bezeichnung5\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'5')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden5\" name=\"bezeichnung_ID5\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str5' name='str5' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz5' value='$plz' id='plz5' size='5'> <input type='text' name='ort5' value='$ort' id='ort5' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach5' id='plz_postfach5' value='$plz_postfach' size='5'> <input type='text' name='postfach5' value='$postfach' id='postfach5' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland5' value='$bundesland' id='bundesland5' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat5' value='$staat' id='staat5' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst5' value='$maildst' id='maildst5' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag5' id='beg_tag5' value='$beg_tag' size=1 onblur='func_monate(5);'>.<input type='text' name='beg_mon5' id='beg_mon5'value='$beg_mon' size=1 onblur='func_monate(5);'>.<input type='text' name='beg_jahr5' id='beg_jahr5' value='$beg_jahr' size=3 onblur='func_monate(5);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal5 = new dynCalendar('beg_cal5', 'calendarCallback', 'images/', '', '5');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag5' id='ende_tag5' value='$end_tag' size=1 onblur='func_monate(5);'>.<input type='text' name='ende_mon5' id='ende_mon5'value='$end_mon' size=1 onblur='func_monate(5);'>.<input type='text' name='ende_jahr5' id='ende_jahr5' value='$end_jahr' size=3 onblur='func_monate(5);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal5 = new dynCalendar('end_cal5', 'calendarCallback_end', 'images/', '', '5');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung5' value='$abteilung' id='abteilung5' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung5' value='$tel_abteilung' id='telabteilung5' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug5'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug5_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung5' value='J' id='entfernung5_ja' onclick='enable_ledig(5);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung5' value='N' id='entfernung5_nein' onclick='disable_ledig(5);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug5_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig5' value='J' id='ledig5_ja' onclick='enable_hausstand(5);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig5' value='N' id='ledig5_nein' onclick='disable_hausstand(5);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug5_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand5' value='J' id='hausstand5_ja' onclick='ergebnis_umzug(5);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand5' value='N' id='hausstand5_nein' onclick='ergebnis_umzug(5);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg5'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(5);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(5);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(5);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(5);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(5);</script>";
|
|
}
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('6', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<br>
|
|
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos6' value='6' id='pos6' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart6\" id='stellenart6'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst6' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(6);' id='dummy_dst6' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung6'id='bezeichnung6' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung6\" name=\"bezeichnung6\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'6')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden6\" name=\"bezeichnung_ID6\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str6' name='str6' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz6' id='plz6' value='$plz' size='5'> <input type='text' name='ort6' value='$ort' id='ort6' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach6' value='$plz_postfach' id='plz_postfach6' size='5'> <input type='text' name='postfach6' value='$postfach' id='postfach6' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland6' value='$bundesland' id='bundesland6' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat6' value='$staat' id='staat6' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst6' value='$maildst' id='maildst6' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag6' id='beg_tag6' value='$beg_tag' size=1 onblur='func_monate(6);'>.<input type='text' name='beg_mon6' id='beg_mon6'value='$beg_mon' size=1 onblur='func_monate(6);'>.<input type='text' name='beg_jahr6' id='beg_jahr6' value='$beg_jahr' size=3 onblur='func_monate(6);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal6 = new dynCalendar('beg_cal6', 'calendarCallback', 'images/', '', '6');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag6' id='ende_tag6' value='$end_tag' size=1 onblur='func_monate(6);'>.<input type='text' name='ende_mon6' id='ende_mon6'value='$end_mon' size=1 onblur='func_monate(6);'>.<input type='text' name='ende_jahr6' id='ende_jahr6' value='$end_jahr' size=3 onblur='func_monate(6);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal6 = new dynCalendar('end_cal6', 'calendarCallback_end', 'images/', '', '6');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung6' value='$abteilung' id='abteilung6' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung6' value='$tel_abteilung' id='telabteilung6' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug6'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug6_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung6' value='J' id='entfernung6_ja' onclick='enable_ledig(6);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung6' value='N' id='entfernung6_nein' onclick='disable_ledig(6);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug6_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig6' value='J' id='ledig6_ja' onclick='enable_hausstand(6);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig6' value='N' id='ledig6_nein' onclick='disable_hausstand(6);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug6_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand6' value='J' id='hausstand6_ja' onclick='ergebnis_umzug(6);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand6' value='N' id='hausstand6_nein' onclick='ergebnis_umzug(6);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg6'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(6);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(6);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(6);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(6);</script>";
|
|
}
|
|
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(6);</script>";
|
|
}
|
|
} // Endif($rowaus[0] == 1){; Wenn man Ausnahme hat, ob man 12 Block Feld angezeigt bekommt
|
|
|
|
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('7', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<!---------------------------------------------------------------------------------------
|
|
---------------------------------------------------------------------------------------->
|
|
|
|
|
|
|
|
|
|
<table cellspacing='0' width='100%' bgcolor=#6487DC>
|
|
<tr >
|
|
<td colspan='2' width='40%' style='border-style: none; border-width: medium' height='0'>
|
|
<font color='#FFFFFF'><b>Vertiefungsbereich 3:</b></font>
|
|
</td>
|
|
|
|
<td width='60%' style='border-style: none; border-width: medium' height='100'>
|
|
";
|
|
$db = dbconnect();
|
|
|
|
|
|
$query1 = "SELECT vbid, bezeichnung
|
|
FROM stan_vertiefungsbereich
|
|
ORDER BY bezeichnung ASC
|
|
";
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"vert3\">
|
|
<option value='x' selected>Bitte wählen Sie einen Vertiefungsbereich </option>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
|
|
echo "<option value='$row1[vbid]'";if($row1['vbid'] == $vert){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos7' value='7' id='pos1' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
|
|
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart7\" id='stellenart7'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst7' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(7);' id='dummy_dst7' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung7'id='bezeichnung7' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung7\" name=\"bezeichnung7\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'7')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden7\" name=\"bezeichnung_ID7\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str7' name='str7' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz7' id='plz7' value='$plz' size='5'> <input type='text' name='ort7' value='$ort' id='ort7' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach7' id='plz_postfach7' value='$plz_postfach' size='5'> <input type='text' name='postfach7' value='$postfach' id='postfach7' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland7' value='$bundesland' id='bundesland7' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat7' value='$staat' id='staat7' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst7' value='$maildst' id='maildst7' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag7' id='beg_tag7' value='$beg_tag' size=1 onblur='func_monate(7);'>.<input type='text' name='beg_mon7' id='beg_mon7'value='$beg_mon' size=1 onblur='func_monate(7);'>.<input type='text' name='beg_jahr7' id='beg_jahr7' value='$beg_jahr' size=3 onblur='func_monate(7);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal7 = new dynCalendar('beg_cal7', 'calendarCallback', 'images/', '', '7');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag7' id='ende_tag7' value='$end_tag' size=1 onblur='func_monate(7);'>.<input type='text' name='ende_mon7' id='ende_mon7'value='$end_mon' size=1 onblur='func_monate(7);'>.<input type='text' name='ende_jahr7' id='ende_jahr7' value='$end_jahr' size=3 onblur='func_monate(7);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal7 = new dynCalendar('end_cal7', 'calendarCallback_end', 'images/', '', '7');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung7' value='$abteilung' id='abteilung7' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung7' value='$tel_abteilung' id='telabteilung7' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug7'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug7_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung7' value='J' id='entfernung7_ja' onclick='enable_ledig(7);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung7' value='N' id='entfernung7_nein' onclick='disable_ledig(7);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug7_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig7' value='J' id='ledig7_ja' onclick='enable_hausstand(7);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig7' value='N' id='ledig7_nein' onclick='disable_hausstand(7);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug7_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand7' value='J' id='hausstand7_ja' onclick='ergebnis_umzug(7);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand7' value='N' id='hausstand7_nein' onclick='ergebnis_umzug(7);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg7'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(7);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(7);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(7);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(7);</script>";
|
|
}
|
|
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(7);</script>";
|
|
}
|
|
if($rowaus[0] == '1'){
|
|
|
|
|
|
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('8', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<br>
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos8' value='8' id='pos8' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart8\" id='stellenart8'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst8' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(8);' id='dummy_dst8' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung8'id='bezeichnung8' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung8\" name=\"bezeichnung8\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'8')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden8\" name=\"bezeichnung_ID8\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str8' name='str8' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz8' value='$plz' id='plz8' size='5'> <input type='text' name='ort8' value='$ort' id='ort8' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach8' value='$plz_postfach' id='plz_postfach8' size='5'> <input type='text' name='postfach8' value='$postfach' id='postfach8' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland8' value='$bundesland' id='bundesland8' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat8' value='$staat' id='staat8' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst8' value='$maildst' id='maildst8' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag8' id='beg_tag8' value='$beg_tag' size=1 onblur='func_monate(8);'>.<input type='text' name='beg_mon8' id='beg_mon8'value='$beg_mon' size=1 onblur='func_monate(8);'>.<input type='text' name='beg_jahr8' id='beg_jahr8' value='$beg_jahr' size=3 onblur='func_monate(8);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal8 = new dynCalendar('beg_cal8', 'calendarCallback', 'images/', '', '8');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag8' id='ende_tag8' value='$end_tag' size=1 onblur='func_monate(8);'>.<input type='text' name='ende_mon8' id='ende_mon8'value='$end_mon' size=1 onblur='func_monate(8);'>.<input type='text' name='ende_jahr8' id='ende_jahr8' value='$end_jahr' size=3 onblur='func_monate(8);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal8 = new dynCalendar('end_cal8', 'calendarCallback_end', 'images/', '', '8');
|
|
//-->
|
|
</script> </td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung8' value='$abteilung' id='abteilung8' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung8' value='$tel_abteilung' id='telabteilung8' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug8'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug8_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung8' value='J' id='entfernung8_ja' onclick='enable_ledig(8);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung8' value='N' id='entfernung8_nein' onclick='disable_ledig(8);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug8_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig8' value='J' id='ledig8_ja' onclick='enable_hausstand(8);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig8' value='N' id='ledig8_nein' onclick='disable_hausstand(8);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug8_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand8' value='J' id='hausstand8_ja' onclick='ergebnis_umzug(8);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand8' value='N' id='hausstand8_nein' onclick='ergebnis_umzug(8);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg8'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(8);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(8);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(8);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(8);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(8);</script>";
|
|
}
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('9', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<br>
|
|
|
|
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos9' value='9' id='pos9' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart9\" id='stellenart9'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst9' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(9);' id='dummy_dst9' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung9'id='bezeichnung9' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung9\" name=\"bezeichnung9\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'9')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden9\" name=\"bezeichnung_ID9\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str9' name='str9' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz9' id='plz9' value='$plz' size='5'> <input type='text' name='ort9' value='$ort' id='ort9' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach9' id='plz_postfach9' value='$plz_postfach' size='5'> <input type='text' name='postfach9' value='$postfach' id='postfach9' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland9' value='$bundesland' id='bundesland9' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat9' value='$staat' id='staat9' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst9' value='$maildst' id='maildst9' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag9' id='beg_tag9' value='$beg_tag' size=1 onblur='func_monate(9);'>.<input type='text' name='beg_mon9' id='beg_mon9'value='$beg_mon' size=1 onblur='func_monate(9);'>.<input type='text' name='beg_jahr9' id='beg_jahr9' value='$beg_jahr' size=3 onblur='func_monate(9);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal9 = new dynCalendar('beg_cal9', 'calendarCallback', 'images/', '', '9');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag9' id='ende_tag9' value='$end_tag' size=1 onblur='func_monate(9);'>.<input type='text' name='ende_mon9' id='ende_mon9'value='$end_mon' size=1 onblur='func_monate(9);'>.<input type='text' name='ende_jahr9' id='ende_jahr9' value='$end_jahr' size=3 onblur='func_monate(9);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal9 = new dynCalendar('end_cal9', 'calendarCallback_end', 'images/', '', '9');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung9' value='$abteilung' id='abteilung9' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung9' value='$tel_abteilung' id='telabteilung9' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug9'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug9_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung9' value='J' id='entfernung9_ja' onclick='enable_ledig(9);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung9' value='N' id='entfernung9_nein' onclick='disable_ledig(9);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug9_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig9' value='J' id='ledig9_ja' onclick='enable_hausstand(9);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig9' value='N' id='ledig9_nein' onclick='disable_hausstand(9);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug9_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand9' value='J' id='hausstand9_ja' onclick='ergebnis_umzug(9);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand9' value='N' id='hausstand9_nein' onclick='ergebnis_umzug(9);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg9'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<br>
|
|
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(9);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(9);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(9);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(9);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(9);</script>";
|
|
}
|
|
|
|
} // Endif($rowaus[0] == 1){; Wenn man Ausnahme hat, ob man 12 Block Feld angezeigt bekommt
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('10', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
|
|
<!---------------------------------------------------------------------------------------
|
|
---------------------------------------------------------------------------------------->
|
|
|
|
|
|
|
|
<table cellspacing='0' width='100%' bgcolor=#6487DC>
|
|
<tr >
|
|
<td colspan='2' width='40%' style='border-style: none; border-width: medium' height='0'>
|
|
<font color='#FFFFFF'><b>Vertiefungsbereich 4:</b></font>
|
|
</td>
|
|
|
|
<td width='60%' style='border-style: none; border-width: medium' height='100'>
|
|
";
|
|
$db = dbconnect();
|
|
|
|
|
|
$query1 = "SELECT vbid, bezeichnung
|
|
FROM stan_vertiefungsbereich
|
|
ORDER BY bezeichnung ASC
|
|
";
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"vert4\">
|
|
<option value='x' selected>Bitte wählen Sie einen Vertiefungsbereich </option>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
|
|
echo "<option value='$row1[vbid]'";if($row1['vbid'] == $vert){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos10' value='10' id='pos10' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
|
|
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart10\" id='stellenart10'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst10' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(10);' id='dummy_dst10' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung10'id='bezeichnung10' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung10\" name=\"bezeichnung10\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'10')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden10\" name=\"bezeichnung_ID10\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str10' name='str10' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz10' id='plz10' value='$plz' size='5'> <input type='text' name='ort10' value='$ort' id='ort10' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach10' id='plz_postfach10' value='$plz_postfach' size='5'> <input type='text' name='postfach10' value='$postfach' id='postfach10' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland10' value='$bundesland' id='bundesland10' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat10' value='$staat' id='staat10' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst10' value='$maildst' id='maildst10' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag10' id='beg_tag10' value='$beg_tag' size=1 onblur='func_monate(10);'>.<input type='text' name='beg_mon10' id='beg_mon10'value='$beg_mon' size=1 onblur='func_monate(10);'>.<input type='text' name='beg_jahr10' id='beg_jahr10' value='$beg_jahr' size=3 onblur='func_monate(10);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal10 = new dynCalendar('beg_cal10', 'calendarCallback', 'images/', '', '10');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag10' id='ende_tag10' value='$end_tag' size=1 onblur='func_monate(10);'>.<input type='text' name='ende_mon10' id='ende_mon10'value='$end_mon' size=1 onblur='func_monate(10);'>.<input type='text' name='ende_jahr10' id='ende_jahr10' value='$end_jahr' size=3 onblur='func_monate(10);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal10 = new dynCalendar('end_cal10', 'calendarCallback_end', 'images/', '', '10');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung10' value='$abteilung' id='abteilung10' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung10' value='$tel_abteilung' id='telabteilung10' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug10'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug10_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung10' value='J' id='entfernung10_ja' onclick='enable_ledig(10);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung10' value='N' id='entfernung10_nein' onclick='disable_ledig(10);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug10_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig10' value='J' id='ledig10_ja' onclick='enable_hausstand(10);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig10' value='N' id='ledig10_nein' onclick='disable_hausstand(10);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug10_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand10' value='J' id='hausstand10_ja' onclick='ergebnis_umzug(10);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand10' value='N' id='hausstand10_nein' onclick='ergebnis_umzug(10);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg10'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(10);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(10);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(10);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(10);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(10);</script>";
|
|
}
|
|
|
|
if($rowaus[0] == '1'){
|
|
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('11', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<br>
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos11' value='11' id='pos11' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart11\" id='stellenart11'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst11' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(11);' id='dummy_dst11' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung11'id='bezeichnung11' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung11\" name=\"bezeichnung11\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'11')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden11\" name=\"bezeichnung_ID11\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str11' name='str11' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz11' id='plz11' value='$plz' size='5'> <input type='text' name='ort11' value='$ort' id='ort11' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach11' value='$plz_postfach' id='plz_postfach11' size='5'> <input type='text' name='postfach11' value='$postfach' id='postfach11' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland11' value='$bundesland' id='bundesland11' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat11' value='$staat' id='staat11' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst11' value='$maildst' id='maildst11' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag11' id='beg_tag11' value='$beg_tag' size=1 onblur='func_monate(11);'>.<input type='text' name='beg_mon11' id='beg_mon11'value='$beg_mon' size=1 onblur='func_monate(11);'>.<input type='text' name='beg_jahr11' id='beg_jahr11' value='$beg_jahr' size=3 onblur='func_monate(11);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal11 = new dynCalendar('beg_cal11', 'calendarCallback', 'images/', '', '11');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag11' id='ende_tag11' value='$end_tag' size=1 onblur='func_monate(11);'>.<input type='text' name='ende_mon11' id='ende_mon11'value='$end_mon' size=1 onblur='func_monate(11);'>.<input type='text' name='ende_jahr11' id='ende_jahr11' value='$end_jahr' size=3 onblur='func_monate(11);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal11 = new dynCalendar('end_cal11', 'calendarCallback_end', 'images/', '', '11');
|
|
//-->
|
|
</script> </td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung11' value='$abteilung' id='abteilung11' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung11' value='$tel_abteilung' id='telabteilung11' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug11'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug11_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung11' value='J' id='entfernung11_ja' onclick='enable_ledig(11);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung11' value='N' id='entfernung11_nein' onclick='disable_ledig(11);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug11_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig11' value='J' id='ledig11_ja' onclick='enable_hausstand(11);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig11' value='N' id='ledig11_nein' onclick='disable_hausstand(11);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug11_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand11' value='J' id='hausstand11_ja' onclick='ergebnis_umzug(11);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand11' value='N' id='hausstand11_nein' onclick='ergebnis_umzug(11);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg11'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(11);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(11);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(11);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(11);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(11);</script>";
|
|
}
|
|
|
|
//Daten an entsprechender Position auslesen über Funktion
|
|
$data = get_data('12', $uid1, $back);
|
|
$art = $data[0];
|
|
$abteilung = $data[1];
|
|
$tel_abteilung = $data[2];
|
|
$bezeichnung = $data[3];
|
|
$str = $data[4];
|
|
$plz = $data[5];
|
|
$postfach = $data[6];
|
|
$plz_postfach = $data[7];
|
|
$ort = $data[8];
|
|
$bundesland = $data[9];
|
|
$staat = $data[10];
|
|
$vert = $data[11];
|
|
$beg_tag = $data[12];
|
|
$beg_mon = $data[13];
|
|
$beg_jahr = $data[14];
|
|
$end_tag = $data[15];
|
|
$end_mon = $data[16];
|
|
$end_jahr = $data[17];
|
|
$maildst = $data[18];
|
|
$dummy_dst = $data[19];
|
|
$entfernung = $data[20];
|
|
$ledig = $data[21];
|
|
$hausstand = $data[22];
|
|
|
|
echo"
|
|
<br>
|
|
|
|
|
|
|
|
<table cellspacing='0' style='width:100%;'>
|
|
|
|
<input type='hidden' name='pos12' value='12' id='pos12' size='50'>
|
|
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Art der Praxisstelle*</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>";
|
|
$db = dbconnect();
|
|
|
|
# Pflichtmodul ab JG 17
|
|
if($stud_jahr['Jahrgang'] < '17'){
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
where merkmal != 'P'
|
|
ORDER BY artid ASC
|
|
";
|
|
}else{
|
|
$query1 = "SELECT artid, bezeichnung
|
|
FROM stan_stellenart
|
|
ORDER BY artid ASC
|
|
";
|
|
}
|
|
|
|
$result1 = $db->query ($query1)
|
|
or die ("Cannot execute query");
|
|
echo "<select class='select_form' size=\"1\" name=\"stellenart12\" id='stellenart12'>";
|
|
while ($row1 = $result1->fetch_array()){
|
|
echo "<option value='$row1[artid]'";if($row1['artid'] == 1){echo "selected";}elseif($row1['artid'] == $art){echo " selected ";} echo">$row1[bezeichnung] </option>\n";
|
|
}
|
|
|
|
echo"</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Dienststelle ist mir noch nicht bekannt:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='checkbox' name='dummy_dst12' "; if($dummy_dst != ''){echo " checked ";} echo " onclick='ausblenden_aktiv(12);' id='dummy_dst12' value='1'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bezeichnung der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' style='border-style: none; border-width: medium' height='0'>
|
|
<!--<input type='text' name='bezeichnung12'id='bezeichnung12' size='50'>-->
|
|
<input type=\"text\" id=\"bezeichnung12\" name=\"bezeichnung12\" value=\"$bezeichnung\" onkeyup=\"ajax_showOptions(this,'getStadt',event,'12')\" size=\"50\">
|
|
<input type=\"hidden\" id=\"bezeichnung_hidden12\" name=\"bezeichnung_ID12\"><!-- THE ID OF the textstelle will be inserted into this hidden input -->";
|
|
$titel = "Suchfunktion";
|
|
$text = "Für Behörden ist eine Suchfunktion über PLZ und Ort hinterlegt. Wenn die gewünschte Praxisstelle nicht vorhanden ist, bitte manuell eintragen - z.B. Daimler AG.";
|
|
echo"<a href=\"javascript:void(0);\" onmouseover=\"return overlib('$text',ABOVE, TEXTFONTCLASS,'text_overlib', WIDTH, 350, CAPTION, '$titel',CAPTIONSIZE, '10px');\" onmouseout=\"nd();\"><img border=\"0\" src=\"../images/i.jpg\"></a>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Straße und Hausnummer der Praxisstelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' id='str12' name='str12' value='$str' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Ort*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz12' id='plz12' value='$plz' size='5'> <input type='text' name='ort12' value='$ort' id='ort12' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>PLZ Postfach:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='plz_postfach12' value='$plz_postfach' id='plz_postfach12' size='5'> <input type='text' name='postfach12' value='$postfach' id='postfach12' size='40'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Bundesland*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='bundesland12' value='$bundesland' id='bundesland12' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Staat*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='staat12' value='$staat' id='staat12' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Mailadresse der Dienststelle*:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='maildst12' value='$maildst' id='maildst12' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Zeitraum bei dieser Praxisstelle*: </b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='beg_tag12' id='beg_tag12' value='$beg_tag' size=1 onblur='func_monate(12);'>.<input type='text' name='beg_mon12' id='beg_mon12'value='$beg_mon' size=1 onblur='func_monate(12);'>.<input type='text' name='beg_jahr12' id='beg_jahr12' value='$beg_jahr' size=3 onblur='func_monate(12);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
beg_cal12 = new dynCalendar('beg_cal12', 'calendarCallback', 'images/', '', '12');
|
|
//-->
|
|
</script>
|
|
|
|
bis
|
|
<input type='text' name='ende_tag12' id='ende_tag12' value='$end_tag' size=1 onblur='func_monate(12);'>.<input type='text' name='ende_mon12' id='ende_mon12'value='$end_mon' size=1 onblur='func_monate(12);'>.<input type='text' name='ende_jahr12' id='ende_jahr12' value='$end_jahr' size=3 onblur='func_monate(12);'>
|
|
|
|
<script language='JavaScript' type='text/javascript'>
|
|
<!--
|
|
end_cal12 = new dynCalendar('end_cal12', 'calendarCallback_end', 'images/', '', '12');
|
|
//-->
|
|
</script>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='abteilung12' value='$abteilung' id='abteilung12' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Tel. der Abteilung:</b>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<input type='text' name='telabteilung12' value='$tel_abteilung' id='telabteilung12' size='50'>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='10%' style='border-style: none; border-width: medium' height='0'>
|
|
|
|
</td>
|
|
<td width='30%' style='border-style: none; border-width: medium' height='0'>
|
|
<b>Antrag auf Umzugsvergütung:</b>
|
|
<br><div id='msg_umzug12'></div>
|
|
</td>
|
|
<td width='60%' align='left' style='border-style: none; border-width: medium' height='0'>
|
|
<div id='umzug12_1' style='background-color:limegreen;width:400px;'>Liegt Ihre Wohnadresse mehr als 30 km von Ihrer zukünftigen Praxisstelle entfernt?</div>
|
|
<label><input type='radio' name='entfernung12' value='J' id='entfernung12_ja' onclick='enable_ledig(12);'";if($entfernung == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='entfernung12' value='N' id='entfernung12_nein' onclick='disable_ledig(12);'";if($entfernung == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug12_1' style='background-color:limegreen;width:400px;'>Sind Sie ledig?</div>
|
|
<label><input type='radio' name='ledig12' value='J' id='ledig12_ja' onclick='enable_hausstand(12);'";if($ledig == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='ledig12' value='N' id='ledig12_nein' onclick='disable_hausstand(12);'";if($ledig == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='umzug12_1' style='background-color:limegreen;width:400px;'>Verfügen Sie über einen eigenen Hausstand?</div>
|
|
<label><input type='radio' name='hausstand12' value='J' id='hausstand12_ja' onclick='ergebnis_umzug(12);'";if($hausstand == 'J'){ echo "checked"; } echo"> Ja</label><br>
|
|
<label><input type='radio' name='hausstand12' value='N' id='hausstand12_nein' onclick='ergebnis_umzug(12);'";if($hausstand == 'N'){ echo "checked"; } echo"> Nein</label>
|
|
<br><br>
|
|
<div id='msg12'></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
";
|
|
if(isset($entfernung) AND $entfernung != ''){
|
|
echo "<script type=\"text/javascript\">ergebnis_umzug(12);</script>";
|
|
}
|
|
if(isset($entfernung) AND $entfernung == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_ledig(12);</script>";
|
|
echo "<script type=\"text/javascript\">disable_hausstand(12);</script>";
|
|
}
|
|
if(isset($ledig) AND $ledig == 'N'){
|
|
echo "<script type=\"text/javascript\">disable_hausstand(12);</script>";
|
|
}
|
|
if($dummy_dst != ''){
|
|
# Javascript muss nach html stehen, da die Textfelder erst erzeugt werden müssen
|
|
echo "<script language='JavaScript'>ausblenden_start(12);</script>";
|
|
}
|
|
} // Endif($rowaus[0] == 1){; Wenn man Ausnahme hat, ob man 12 Block Feld angezeigt bekommt
|
|
echo"
|
|
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<hr>
|
|
<br>
|
|
* = Pflichtfelder<br><br>
|
|
<p align='center'>
|
|
<input type=\"submit\" value=\"Vormerken\" name=\"B1\" size=\"20\">
|
|
</p>
|
|
</form>
|
|
</td>
|
|
<td width='1%' background='../images/box_r.gif'>
|
|
<img height='1' src='../images/blank.gif' width='22'></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap='nowrap' align='left' width='1%' background='../images/box_e3.gif'>
|
|
<img height='16' src='../images/blank.gif' width='22'></td>
|
|
<td nowrap='nowrap' align='left' width='98%' background='../images/box_bottom.gif'>
|
|
<img height='16' src='../images/blank.gif' width='8'></td>
|
|
<td nowrap='nowrap' align='right' width='1%' background='../images/box_e4.gif'>
|
|
<img height='16' src='../images/blank.gif' width='22'> </td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>";
|
|
break;
|
|
case "persdat":
|
|
|
|
### doppelte Vertiefungsbereiche prüfen ###
|
|
check_vertiefungsbereich();
|
|
### Ende doppelte Vertiefungsbereiche prüfen ###
|
|
|
|
|
|
### Prüft, ob vertiefungsbereich gewählt wurde###
|
|
vertiefungsbereich();
|
|
### Ende, ob vertiefungsbereich gewählt wurde###
|
|
|
|
|
|
### Pflichtfelder prüfen ###
|
|
pflichtfelder();
|
|
### Ende Pflichtfelder prüfen ###
|
|
|
|
|
|
### Anzahl der Anträge prüfen, ob pro Vertiefungsbereich max 3 Stellen sind ###
|
|
## anz_stellen(); überflüssig, da man nur noch 3 Stellen erfassen kann...
|
|
### Ende Anzahl prüfen ###
|
|
|
|
|
|
$result_tmp1 = $db->query("DELETE FROM stan_antrag WHERE uid='$uid1'");
|
|
|
|
for ($i= 1;$i<= 12;$i++) // maximal 12 Felder können ausgefüllt werden
|
|
{
|
|
$pos = $_POST['pos'.$i]; // Vom Formular gesendetes Objekt in Variable schreiben
|
|
$stellenart = $_POST['stellenart'.$i];
|
|
$dummy_dst = $_POST['dummy_dst'.$i];
|
|
$bezeichnung = $_POST['bezeichnung'.$i];
|
|
$str = $_POST['str'.$i];
|
|
$postfach = $_POST['postfach'.$i];
|
|
$plz_postfach = $_POST['plz_postfach'.$i];
|
|
$plz = $_POST['plz'.$i];
|
|
$ort = $_POST['ort'.$i];
|
|
$bundesland = $_POST['bundesland'.$i];
|
|
$staat = $_POST['staat'.$i];
|
|
$maildst = $_POST['maildst'.$i];
|
|
$beginndatum = $_POST['beg_jahr'.$i].'-'.$_POST['beg_mon'.$i].'-'.$_POST['beg_tag'.$i];
|
|
$enddatum = $_POST['ende_jahr'.$i].'-'.$_POST['ende_mon'.$i].'-'.$_POST['ende_tag'.$i];
|
|
$abteilung = $_POST['abteilung'.$i];
|
|
$telabteilung = $_POST['telabteilung'.$i];
|
|
|
|
if(isset($_POST['entfernung'.$i])){
|
|
$entfernung = $_POST['entfernung'.$i];
|
|
}else{
|
|
$entfernung = 'N';
|
|
}
|
|
|
|
if(isset($_POST['ledig'.$i])){
|
|
$ledig = $_POST['ledig'.$i];
|
|
}else{
|
|
$ledig = 'N';
|
|
}
|
|
|
|
if(isset($_POST['hausstand'.$i])){
|
|
$hausstand = $_POST['hausstand'.$i];
|
|
}else{
|
|
$hausstand = 'N';
|
|
}
|
|
|
|
if($entfernung == 'J' AND $ledig == 'J' AND $hausstand == 'N'){
|
|
$umzugsverg = 'J';
|
|
}else{
|
|
$umzugsverg = 'N';
|
|
}
|
|
|
|
if(isset($pos)){
|
|
$pos = str_replace (array("'"), array("\'"), $pos);
|
|
}
|
|
|
|
if(isset($stellenart)){
|
|
$stellenart = str_replace (array("'"), array("\'"), $stellenart);
|
|
}
|
|
|
|
if(isset($dummy_dst)){
|
|
$dummy_dst = str_replace (array("'"), array("\'"), $dummy_dst);
|
|
}
|
|
|
|
if(isset($bezeichnung)){
|
|
$bezeichnung = str_replace (array("'"), array("\'"), $bezeichnung);
|
|
}
|
|
|
|
if(isset($str)){
|
|
$str = str_replace (array("'"), array("\'"), $str);
|
|
}
|
|
|
|
if(isset($postfach)){
|
|
$postfach = str_replace (array("'"), array("\'"), $postfach);
|
|
}
|
|
|
|
if(isset($plz_postfach)){
|
|
$plz_postfach = str_replace (array("'"), array("\'"), $plz_postfach);
|
|
}
|
|
|
|
if(isset($plz)){
|
|
$plz = str_replace (array("'"), array("\'"), $plz);
|
|
}
|
|
|
|
if(isset($ort)){
|
|
$ort = str_replace (array("'"), array("\'"), $ort);
|
|
}
|
|
|
|
if(isset($bundesland)){
|
|
$bundesland = str_replace (array("'"), array("\'"), $bundesland);
|
|
}
|
|
|
|
if(isset($staat)){
|
|
$staat = str_replace (array("'"), array("\'"), $staat);
|
|
}
|
|
|
|
if(isset($maildst)){
|
|
$maildst = str_replace (array("'"), array("\'"), $maildst);
|
|
}
|
|
|
|
if(isset($beginndatum)){
|
|
$beginndatum = str_replace (array("'"), array("\'"), $beginndatum);
|
|
}
|
|
|
|
if(isset($enddatum)){
|
|
$enddatum = str_replace (array("'"), array("\'"), $enddatum);
|
|
}
|
|
|
|
if(isset($abteilung)){
|
|
$abteilung = str_replace (array("'"), array("\'"), $abteilung);
|
|
}
|
|
|
|
if(isset($telabteilung)){
|
|
$telabteilung = str_replace (array("'"), array("\'"), $telabteilung);
|
|
}
|
|
|
|
|
|
if($stellenart != '1'){
|
|
switch($i){
|
|
case 1:
|
|
$vertiefungsbereich = $_POST['vert1'];
|
|
break;
|
|
case 2:
|
|
$vertiefungsbereich = $_POST['vert1'];
|
|
break;
|
|
case 3:
|
|
$vertiefungsbereich = $_POST['vert1'];
|
|
break;
|
|
case 4:
|
|
$vertiefungsbereich = $_POST['vert2'];
|
|
break;
|
|
case 5:
|
|
$vertiefungsbereich = $_POST['vert2'];
|
|
break;
|
|
case 6:
|
|
$vertiefungsbereich = $_POST['vert2'];
|
|
break;
|
|
case 7:
|
|
$vertiefungsbereich = $_POST['vert3'];
|
|
break;
|
|
case 8:
|
|
$vertiefungsbereich = $_POST['vert3'];
|
|
break;
|
|
case 9:
|
|
$vertiefungsbereich = $_POST['vert3'];
|
|
break;
|
|
case 10:
|
|
$vertiefungsbereich = $_POST['vert4'];
|
|
break;
|
|
case 11:
|
|
$vertiefungsbereich = $_POST['vert4'];
|
|
break;
|
|
case 12:
|
|
$vertiefungsbereich = $_POST['vert4'];
|
|
break;
|
|
}
|
|
|
|
## Dienstellen prüfen, ob es eine eigene ist, oder ob sie aus der Datenbank übernommen wurde.
|
|
$res = $db->query("SELECT dst_id
|
|
FROM stan_dienststellen
|
|
WHERE bez='$bezeichnung'
|
|
AND str='$str'
|
|
AND plz='$plz'
|
|
AND ort='$ort'
|
|
AND postfach='$postfach'
|
|
AND plz_postfach='$plz_postfach'
|
|
AND mail='$maildst'");
|
|
$row_key = $res->fetch_array();
|
|
|
|
|
|
## Entweder es gibt zur DSTS einen Schlüssel, oder es wird einer angelegt und DS in tmp Tabelle gespeichert, bis Admin sie umträgt
|
|
if($row_key['dst_id'] == ''){
|
|
|
|
$res2 = $db->query("SELECT dst_id
|
|
FROM stan_dienststellen_tmp
|
|
WHERE bez='$bezeichnung'
|
|
AND str='$str'
|
|
AND plz='$plz'
|
|
AND ort='$ort'
|
|
AND postfach='$postfach'
|
|
AND plz_postfach='$plz_postfach'
|
|
AND mail='$maildst'");
|
|
$row_key2 = $res2->fetch_array();
|
|
|
|
if($row_key2['dst_id'] == ''){
|
|
## Herausfinden, welches die max Dienststellen ID ist. Simulation einer Sequence
|
|
$res1 = $db->query("SELECT max(dst_id)+1 next FROM stan_dienststellen");
|
|
$row_next1 = $res1->fetch_array();
|
|
|
|
$res2 = $db->query("SELECT max(dst_id)+1 next FROM stan_dienststellen_tmp");
|
|
$row_next2 = $res2->fetch_array();
|
|
|
|
if($row_next1['next'] >= $row_next2['next']){
|
|
$dst_id = $row_next1['next'];
|
|
}else{
|
|
$dst_id = $row_next2['next'];
|
|
}
|
|
|
|
$db = dbconnect();
|
|
$res_stellanrt = $db->query("SELECT Merkmal
|
|
FROM stan_stellenart
|
|
WHERE artid='$stellenart'
|
|
");
|
|
$row_art = $res_stellanrt->fetch_array();
|
|
|
|
if($row_art['Merkmal'] == 'A' AND $bezeichnung == ''){ //wenn Textfelder bei Auslandspraktikum leer gelassen werden, dann wird 0 als dst_id eingetragen. Dies geht nur mit bei Ausland (StellenartID=6)
|
|
$dst_id = 0;
|
|
}
|
|
|
|
# Wenn unbekannte DST muss auch kein dummy angelegt werden: $dummy_dst=='' wenn Häkchen nicht geklickt ist
|
|
if($dummy_dst == ''){
|
|
$sql = $db->query ("INSERT INTO stan_dienststellen_tmp (dst_id, bez, str, plz_postfach, postfach, plz, ort, bundesland, staat, mail)
|
|
VALUES ($dst_id, '$bezeichnung', '$str', '$plz_postfach', '$postfach', '$plz', '$ort', '$bundesland', '$staat', '$maildst')");
|
|
}
|
|
|
|
if($row_art['Merkmal'] == 'A' AND $bezeichnung == ''){ //Wenn Auslandspraktikum leer gelassen wird, soll nicht ein leerer Ort in die tmp Tabelle eingetragen werden.
|
|
$result_tmp1 = $db->query("DELETE FROM stan_dienststellen_tmp WHERE dst_id='$dst_id'");
|
|
}
|
|
}else{
|
|
$dst_id = $row_key2['dst_id']; // wenn adresse in tmp Tabelle vorhanden ist.
|
|
}
|
|
}else{
|
|
$dst_id = $row_key['dst_id']; // wenn adresse in dst Tabelle vorhanden ist.
|
|
}
|
|
|
|
if($dummy_dst != ''){
|
|
# unbekannte Dienststelle ist angeklickt, dann keine DST_ID
|
|
$dst_id = 0;
|
|
}
|
|
|
|
|
|
if(isset($stellenart)){ // Im 4-Blockmodus gibt es nicht alle Textfelder, also nur ein Insert machen, wenn die Variable existiert
|
|
$sql = $db->query ("INSERT INTO stan_antrag (uid, pos, vert_bereich, art, dummy_dst, dst_id, beginn, ende, abteilung, tel_abteilung, entfernung, ledig, hausstand, umzugsverg, status, zuweisung
|
|
) VALUES (
|
|
'$uid1', '$pos', '$vertiefungsbereich', '$stellenart', '$dummy_dst', '$dst_id', '$beginndatum', '$enddatum', '$abteilung'
|
|
, '$telabteilung', '$entfernung', '$ledig', '$hausstand', '$umzugsverg', '-1', Null)");
|
|
$aendid = $db->insert_id;
|
|
$sql1 = $db->query ("update stan_antrag set aendid='$aendid' where saaid = '$aendid'");
|
|
}
|
|
|
|
if(!$sql){
|
|
$fehler_insert='X';
|
|
}
|
|
|
|
|
|
} // Ende Wenn Stellenantrag ausgewählt wurde
|
|
} // Ende For-Schleife
|
|
|
|
|
|
if ($fehler_insert == 'X')
|
|
{
|
|
echo"
|
|
<html>
|
|
<head>
|
|
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">
|
|
<link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\">
|
|
<title>Antrag nicht gestellt</title>
|
|
</head>
|
|
<body>
|
|
<table border=\"0\" style=\"border-collapse: collapse\" width=\"100%\" cellpadding=\"0\" height=\"100%\" id=\"table1\">
|
|
<tr>
|
|
<td>
|
|
<div align=\"center\">
|
|
<table cellspacing=\"0\" cellpadding=\"0\" width=\"550\" border=\"0\">
|
|
<tr>
|
|
<td width=\"10\" background=\"../images/box_e1.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"3%\" background=\"../images/box_top.gif\" valign=\"top\"></td>
|
|
<td width=\"95%\" background=\"../images/box_top.gif\">
|
|
<img height=\"10\" src=\"../images/blank.gif\" width=\"1\"><br>
|
|
<span class=\"sh\">Antrag nicht vorgemerkt</span><br>
|
|
<img height=\"5\" src=\"../images/blank.gif\" width=\"1\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e2.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width=\"1%\" background=\"../images/box_l.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td colspan=\"2\"><br>
|
|
<p align=\"center\"><b>Der Antrag konnte aufgrund eines Fehlers nicht erfasst werden!</b>
|
|
<br>Versuchen Sie es bitte erneut. Ansonsten wenden Sie sich bitte an das Rechenzentrum
|
|
<br>
|
|
|
|
</p>
|
|
<p align=\"center\"><a href=".$_SERVER['PHP_SELF'] .">
|
|
<img border=\"0\" src=\"../images/zurueck.gif\" width=\"77\" height=\"22\"></a><br>
|
|
</p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p><br>
|
|
</p>
|
|
</td>
|
|
<td width=\"1%\" background=\"../images/box_r.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"1%\" background=\"../images/box_e3.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"../images/box_bottom.gif\" colspan=\"2\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"8\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e4.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"> </td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>";
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
echo"
|
|
<html>
|
|
<head>
|
|
<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">
|
|
<link rel=\"stylesheet\" href=\"../styles_pc.css\" type=\"text/css\">
|
|
<title>Antrag nicht gestellt</title>
|
|
</head>
|
|
<body>
|
|
<table border=\"0\" style=\"border-collapse: collapse\" width=\"100%\" cellpadding=\"0\" height=\"100%\" id=\"table1\">
|
|
<tr>
|
|
<td>
|
|
<div align=\"center\">
|
|
<table cellspacing=\"0\" cellpadding=\"0\" width=\"550\" border=\"0\">
|
|
<tr>
|
|
<td width=\"10\" background=\"../images/box_e1.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"3%\" background=\"../images/box_top.gif\" valign=\"top\"></td>
|
|
<td width=\"95%\" background=\"../images/box_top.gif\">
|
|
<img height=\"10\" src=\"../images/blank.gif\" width=\"1\"><br>
|
|
<span class=\"sh\">Daten vorgemerkt</span><br>
|
|
<img height=\"5\" src=\"../images/blank.gif\" width=\"1\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e2.gif\">
|
|
<img height=\"40\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width=\"1%\" background=\"../images/box_l.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td colspan=\"2\"><br>
|
|
<p align=\"center\"><b>Ihre Daten wurden vorgemerkt!</b><br>
|
|
<br>
|
|
Das Antragsverfahren ist damit noch <u>nicht</u> abgeschlossen!<br><br>
|
|
Sie können Ihre Daten auf der Seite <a href='gesamtcheck.php'>\"Daten überprüfen/speichern\"</a> überprüfen,<br>
|
|
oder durch erneutes aufrufen von <a href=".$_SERVER['PHP_SELF'] .">\"Stelle vormerken\"</a>
|
|
bearbeiten.
|
|
<br>
|
|
<br>
|
|
Sobald Ihre Daten fachlich und inhaltlich richtig sind, können Sie<br>
|
|
den Antrag auf der Seite <a href='gesamtcheck.php'>\"Daten überprüfen/speichern\"</a> stellen.
|
|
</p>
|
|
<!--<p align=\"center\"><a href=".$_SERVER['PHP_SELF'] .">
|
|
<img border=\"0\" src=\"../images/zurueck.gif\" width=\"77\" height=\"22\"></a><br>-->
|
|
</p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p></p>
|
|
<p><br>
|
|
</p>
|
|
</td>
|
|
<td width=\"1%\" background=\"../images/box_r.gif\">
|
|
<img height=\"1\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
</tr>
|
|
<tr>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"1%\" background=\"../images/box_e3.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"></td>
|
|
<td nowrap=\"nowrap\" align=\"left\" width=\"98%\" background=\"../images/box_bottom.gif\" colspan=\"2\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"8\"></td>
|
|
<td nowrap=\"nowrap\" align=\"right\" width=\"1%\" background=\"../images/box_e4.gif\">
|
|
<img height=\"16\" src=\"../images/blank.gif\" width=\"22\"> </td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
";
|
|
|
|
|
|
} // Ende Action
|
|
|
|
?>
|