mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-25 14:10:28 +01:00
Fixed autoversand
This commit is contained in:
parent
b618ea78d4
commit
2a5f01004b
@ -2089,7 +2089,7 @@ public function NavigationHooks(&$menu)
|
|||||||
// @refactor FileLock Komponente
|
// @refactor FileLock Komponente
|
||||||
function ProzessUnlock($fp)
|
function ProzessUnlock($fp)
|
||||||
{
|
{
|
||||||
if(!$fp)return;
|
if(gettype($fp) != 'resource') return;
|
||||||
fflush($fp); // leere Ausgabepuffer bevor die Sperre frei gegeben wird
|
fflush($fp); // leere Ausgabepuffer bevor die Sperre frei gegeben wird
|
||||||
flock($fp, LOCK_UN); // Gib Sperre frei
|
flock($fp, LOCK_UN); // Gib Sperre frei
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
@ -22154,19 +22154,17 @@ function Gegenkonto($ust_befreit,$ustid='', $doctype = '', $doctypeId = 0)
|
|||||||
function GetGeschaeftsBriefText($subjekt,$sprache='',$projekt='',$dokument='',$dokumentid=0)
|
function GetGeschaeftsBriefText($subjekt,$sprache='',$projekt='',$dokument='',$dokumentid=0)
|
||||||
{
|
{
|
||||||
|
|
||||||
$dbcheck = $this->app->DB->Select("SHOW TABLES LIKE '$dokument'");
|
$text = '';
|
||||||
|
if ($dokument != '') {
|
||||||
if ($dbcheck) {
|
$dbcheck = $this->app->DB->Select("SHOW TABLES LIKE '$dokument'");
|
||||||
$abweichend = $this->app->DB->Select("SELECT abweichendebezeichnung FROM $dokument WHERE id='$dokumentid' LIMIT 1");
|
if (!empty($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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if($abweichend>0 && !preg_match('/_Abweichend/',$subjekt))
|
|
||||||
{
|
|
||||||
$text = $this->GetGeschaeftsBriefText($subjekt."_Abweichend",$sprache,$projekt,$dokument,$dokumentid);
|
|
||||||
}else{
|
|
||||||
$text = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if($text=='')
|
if($text=='')
|
||||||
{
|
{
|
||||||
@ -22200,14 +22198,16 @@ function Gegenkonto($ust_befreit,$ustid='', $doctype = '', $doctypeId = 0)
|
|||||||
function GetGeschaeftsBriefBetreff($subjekt,$sprache="",$projekt="",$dokument="",$dokumentid=0)
|
function GetGeschaeftsBriefBetreff($subjekt,$sprache="",$projekt="",$dokument="",$dokumentid=0)
|
||||||
{
|
{
|
||||||
|
|
||||||
$dbcheck = $this->app->DB->Select("SHOW TABLES LIKE '$dokument'");
|
$text = '';
|
||||||
|
if ($dokument != '') {
|
||||||
if ($dbcheck) {
|
$dbcheck = $this->app->DB->Select("SHOW TABLES LIKE '$dokument'");
|
||||||
$abweichend = $this->app->DB->Select("SELECT abweichendebezeichnung FROM $dokument WHERE id='$dokumentid' LIMIT 1");
|
if ($dbcheck) {
|
||||||
}
|
$abweichend = $this->app->DB->Select("SELECT abweichendebezeichnung FROM $dokument WHERE id='$dokumentid' LIMIT 1");
|
||||||
if($abweichend>0 && !preg_match('/_Abweichend/',$subjekt))
|
}
|
||||||
{
|
if($abweichend>0 && !preg_match('/_Abweichend/',$subjekt))
|
||||||
$text = $this->GetGeschaeftsBriefBetreff($subjekt."_Abweichend",$sprache,$projekt,$dokument,$dokumentid);
|
{
|
||||||
|
$text = $this->GetGeschaeftsBriefBetreff($subjekt."_Abweichend",$sprache,$projekt,$dokument,$dokumentid);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if($text=="")
|
if($text=="")
|
||||||
|
13687
www/pages/auftrag.php
13687
www/pages/auftrag.php
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user