mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-25 06:00:28 +01:00
Bugfix benutzer
This commit is contained in:
parent
ca9c1fc354
commit
61c0675e58
@ -30108,11 +30108,14 @@ function ChargenMHDAuslagern($artikel, $menge, $lagerplatztyp, $lpid,$typ,$wert,
|
|||||||
|
|
||||||
//$tpl .="<option value=\"0\">-- kein --</option>";
|
//$tpl .="<option value=\"0\">-- kein --</option>";
|
||||||
$drucker = $this->app->DB->SelectArr("SELECT id, name FROM drucker WHERE aktiv='1' AND art='1'");
|
$drucker = $this->app->DB->SelectArr("SELECT id, name FROM drucker WHERE aktiv='1' AND art='1'");
|
||||||
for($i=0;$i<count($drucker);$i++)
|
|
||||||
{
|
if (gettype($drucker) == 'array') {
|
||||||
if($drucker[$i]['id']==$selected) $mark="selected"; else $mark="";
|
for($i=0;$i<count($drucker);$i++)
|
||||||
$tpl .="<option value=\"{$drucker[$i]['id']}\" $mark>{$drucker[$i]['name']}</option>";
|
{
|
||||||
}
|
if($drucker[$i]['id']==$selected) $mark="selected"; else $mark="";
|
||||||
|
$tpl .="<option value=\"{$drucker[$i]['id']}\" $mark>{$drucker[$i]['name']}</option>";
|
||||||
|
}
|
||||||
|
}
|
||||||
return $tpl;
|
return $tpl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user