From c36c9000778a6dadb8a0cc8bcaedbfac33d562fd Mon Sep 17 00:00:00 2001 From: paoloar77 Date: Thu, 13 Jun 2024 09:28:10 +0200 Subject: [PATCH] aa --- app/CustomFuncPao.php | 4 ++-- routes/web.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/CustomFuncPao.php b/app/CustomFuncPao.php index 82fa5e81..b2d74456 100644 --- a/app/CustomFuncPao.php +++ b/app/CustomFuncPao.php @@ -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); diff --git a/routes/web.php b/routes/web.php index 01430266..45306fa7 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1865,7 +1865,7 @@ function getvalstr($mystr, $value, $separato = false) { if ($mystr) { $my = " " . $mystr . ": " . $value; } else { - $my = $value; + $my = " " . $value; } if ($separato) {