Änderungen Bewerbertool

- neue Felder Geburtsnation, Geburtsort, SNR Pflichtfeld bei AT Staatsbürger
- Telefonnr 
- ZGV geschlöscht
- Info für welchen Studiengang Dokument benötigt wird
This commit is contained in:
Karl Burkhart
2014-06-11 14:51:37 +00:00
parent ff061dc0a5
commit ab8ac9f4fb
3 changed files with 193 additions and 34 deletions
+14
View File
@@ -833,5 +833,19 @@ class person extends basis_db
return true;
}
public function checkSvnr($svnr)
{
$qry = "Select 1 from public.tbl_person where svnr =".$this->db_add_param($svnr).";";
if($result = $this->db_query($qry))
{
if($this->db_num_rows($result)>0)
return true;
else
return false;
}
}
}
?>