This commit is contained in:
paoloar77
2024-06-13 09:28:10 +02:00
parent 3d11f604a9
commit c36c900077
2 changed files with 3 additions and 3 deletions

View File

@@ -253,8 +253,8 @@ function showOrdini()
// Show the fields of the orders
foreach ($orders as $order) {
$str .= getvalstr("", $order->Codice);
$str .= getvalstr("IdInternet", $order->IdInternet, true);
$str .= getvalstr("", $order->Codice) . " ";
$str .= getvalstr("IdInternet", $order->IdInternet, true). " ";
$str .= getvalstr("", $order->CodArticoloGM, true);
$str .= getvalstr("Qta", $order->Qta);
$str .= getvalstr("", $order->DataOra);

View File

@@ -1865,7 +1865,7 @@ function getvalstr($mystr, $value, $separato = false) {
if ($mystr) {
$my = " " . $mystr . ": " . $value;
} else {
$my = $value;
$my = " " . $value;
}
if ($separato) {