mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 08:22:17 +00:00
- Bei Projektarbeiten koennen nun Personen angelegt werden (Firmenbetreuer)
- Anpassung von Vorlagen
This commit is contained in:
@@ -171,6 +171,7 @@ class adresse
|
||||
$adr_obj->plz = $row->plz;
|
||||
$adr_obj->strasse = $row->strasse;
|
||||
$adr_obj->typ = $row->typ;
|
||||
$adr_obj->firma_id = $row->firma_id;
|
||||
$adr_obj->updateamum = $row->updateamum;
|
||||
$adr_obj->updatevon = $row->updatevon;
|
||||
$adr_obj->insertamum = $row->insertamum;
|
||||
|
||||
@@ -105,6 +105,7 @@ class kontakt
|
||||
$this->insertamum = $row->insertamum;
|
||||
$this->insertvon = $row->insertvon;
|
||||
$this->ext_id = $row->ext_id;
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -153,9 +153,9 @@ class projektbetreuer
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!is_numeric($this->note))
|
||||
if($this->note!='' && !is_numeric($this->note))
|
||||
{
|
||||
$this->errormsg = 'Note muß ein numerischer Wert sein - person_id/projektarbeit: '.$this->person_id.'/'.$this->projektarbeit_id;
|
||||
$this->errormsg = 'Note muss ein numerischer Wert sein - person_id/projektarbeit: '.$this->person_id.'/'.$this->projektarbeit_id;
|
||||
return false;
|
||||
}
|
||||
if(!is_numeric($this->punkte))
|
||||
|
||||
Reference in New Issue
Block a user