mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
Personendetails beim Anlegen von Projektbetreuern anzeigen
This commit is contained in:
@@ -1068,7 +1068,7 @@ function StudentProjektbetreuerLoadMitarbeiterDaten()
|
||||
// ****
|
||||
function StudentProjektbetreuerNeuePerson()
|
||||
{
|
||||
window.open('<?php echo APP_ROOT; ?>vilesci/personen/personen_anlegen.php','Person anlegen','height=600,width=800,left=300,top=300,hotkeys=0,resizable=yes,status=no,scrollbars=yes,toolbar=no,location=no,menubar=no,dependent=yes');
|
||||
window.open('<?php echo APP_ROOT; ?>vilesci/personen/personen_anlegen.php','Person anlegen','height=600,width=900,left=300,top=300,hotkeys=0,resizable=yes,status=no,toolbar=no,location=no,menubar=no,dependent=yes');
|
||||
}
|
||||
|
||||
// ****
|
||||
|
||||
@@ -404,7 +404,18 @@ if($where!='')
|
||||
|
||||
if($result = $db->db_query($qry))
|
||||
{
|
||||
echo '<table><tr><th></th><th>Nachname</th><th>Vorname</th><th>GebDatum</th><th>SVNR</th><th>Geschlecht</th><th>Adresse</th><th>Status</th></tr>';
|
||||
echo '<table>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Nachname</th>
|
||||
<th>Vorname</th>
|
||||
<th>GebDatum</th>
|
||||
<th>SVNR</th>
|
||||
<th>Geschlecht</th>
|
||||
<th>Adresse</th>
|
||||
<th>Status</th>
|
||||
<th>Details</th>
|
||||
</tr>';
|
||||
while($row = $db->db_fetch_object($result))
|
||||
{
|
||||
$status = '';
|
||||
@@ -428,6 +439,7 @@ if($where!='')
|
||||
while($row_adr=$db->db_fetch_object($result_adr))
|
||||
echo "$row_adr->plz $row_adr->ort, $row_adr->strasse<br>";
|
||||
echo "<td>$status</td>";
|
||||
echo '<td><a href="personendetails.php?id='.$row->person_id.'" target="_blank">Details</a></td>';
|
||||
echo "</td></tr>";
|
||||
}
|
||||
echo '<tr><td><input type="radio" name="person_id" value="0" checked onclick="disablefields(this)"></td><td>Neue Person anlegen</td></tr>';
|
||||
|
||||
Reference in New Issue
Block a user