diff --git a/version.php b/version.php index b9348762..74dd7db9 100644 --- a/version.php +++ b/version.php @@ -1 +1 @@ - \ No newline at end of file + diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index af962630..de42015f 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -22155,7 +22155,12 @@ function Gegenkonto($ust_befreit,$ustid='', $doctype = '', $doctypeId = 0) //@refactor Geschaeftsbrief_vorlagen Modul function GetGeschaeftsBriefText($subjekt,$sprache='',$projekt='',$dokument='',$dokumentid=0) { - $abweichend = $this->app->DB->Select("SELECT abweichendebezeichnung FROM $dokument WHERE id='$dokumentid' LIMIT 1"); + + $dbcheck = $this->app->DB->Select("SHOW TABLES LIKE '$dokument'"); + + if ($dbcheck) { + $abweichend = $this->app->DB->Select("SELECT abweichendebezeichnung FROM $dokument WHERE id='$dokumentid' LIMIT 1"); + } if($abweichend>0 && !preg_match('/_Abweichend/',$subjekt)) { $text = $this->GetGeschaeftsBriefText($subjekt."_Abweichend",$sprache,$projekt,$dokument,$dokumentid); @@ -22197,7 +22202,11 @@ function Gegenkonto($ust_befreit,$ustid='', $doctype = '', $doctypeId = 0) function GetGeschaeftsBriefBetreff($subjekt,$sprache="",$projekt="",$dokument="",$dokumentid=0) { - $abweichend = $this->app->DB->Select("SELECT abweichendebezeichnung FROM $dokument WHERE id='$dokumentid' LIMIT 1"); + $dbcheck = $this->app->DB->Select("SHOW TABLES LIKE '$dokument'"); + + if ($dbcheck) { + $abweichend = $this->app->DB->Select("SELECT abweichendebezeichnung FROM $dokument WHERE id='$dokumentid' LIMIT 1"); + } if($abweichend>0 && !preg_match('/_Abweichend/',$subjekt)) { $text = $this->GetGeschaeftsBriefBetreff($subjekt."_Abweichend",$sprache,$projekt,$dokument,$dokumentid);