bugfix lageretiketten

This commit is contained in:
OpenXE 2024-02-12 19:45:43 +01:00
parent c89c36e596
commit dd713c2286
2 changed files with 211 additions and 206 deletions

View File

@ -10519,15 +10519,19 @@ function SendPaypalFromAuftrag($auftrag, $test = false)
}
}
if($variables['datum']=="") $variables['datum']=date('d.m.Y');
if (is_array($variables)) {
if($variables['datum']=="") {
$variables['datum']=date('d.m.Y');
}
if(!empty($variables))
{
foreach($variables as $key=>$value)
{
$value = $this->UmlauteEntfernen($value);
$xml = str_replace("{".strtoupper($key)."}",$value,$xml);
}
if(!empty($variables))
{
foreach($variables as $key=>$value)
{
$value = $this->UmlauteEntfernen($value);
$xml = str_replace("{".strtoupper($key)."}",$value,$xml);
}
}
}
// y to z wenn Kein PDF -> also nur bei EPL Drucker - 09.06.2019 BS heute auf 0 gestellt bei deutschen adapterboxen eventuell

View File

@ -22,6 +22,7 @@ class EtikettenPDF extends SuperFPDF {
function __construct($app,$projekt="") {
$this->app=$app;
$this->page_definded=false;
$this->images = array();
}
function SetXML($xml)