This commit is contained in:
paoloar77
2024-07-22 12:25:09 +02:00
parent ea4e9afd04
commit e4ddd4eae5

View File

@@ -505,6 +505,7 @@ function showOrdini()
$str .= getvalstr("", $titolo);
$str .= getvalstr("Ordine", $order->IdInternet, true) . " ";
$str .= getvalstr("Articolo", $order->CodArticoloGM, true);
$str .= getvalstr("IdSito", $order->IdSito, true);
$str .= getvalstr("Prezzo", $order->PrezzoLordo);
$str .= getvalstr("Quantità", $order->Qta);
if ($order->PercSconto)
@@ -556,6 +557,7 @@ function showOrdiniWeb()
$str .= getvalstr("Ordine", $order->IdInternet, true) . " ";
$str .= getvalstr("Articolo", $order->CodArticoloGM, true);
$str .= getvalstr("Prezzo", $order->PrezzoLordo);
$str .= getvalstr("IdSito", $order->IdSito, true);
$str .= getvalstr("Quantità", $order->Qta);
if ($order->PercSconto)
$str .= getvalstr("Sconto", $order->PercSconto);
@@ -687,7 +689,6 @@ function showDettOrdini()
// Show the fields of the orders
foreach ($orders as $order) {
$str .= "Ordine: ";
$str .= getvalstr("IdInternet", $order->IdInternet, true) . " ";
$str .= getvalstr("CodCliente", $order->CodClienteInternet, true);
$str .= getvalstr("IdSito", $order->IdSito, true);