aa
This commit is contained in:
@@ -240,7 +240,7 @@ function loadArticleByIdArticle($id, $checkprevendita = false)
|
||||
|
||||
function showOrdini()
|
||||
{
|
||||
$str = "Ordini";
|
||||
$str = "";
|
||||
|
||||
|
||||
try {
|
||||
@@ -254,13 +254,15 @@ function showOrdini()
|
||||
// Show the fields of the orders
|
||||
foreach ($orders as $order) {
|
||||
$str .= getvalstr("", $order->Codice) . " ";
|
||||
$str .= getvalstr("", $order->DataOra);
|
||||
$str .= getvalstr("IdInternet", $order->IdInternet, true). " ";
|
||||
$str .= getvalstr("", $order->CodArticoloGM, true);
|
||||
$str .= getvalstr("Qta", $order->Qta);
|
||||
$str .= getvalstr("", $order->DataOra);
|
||||
$str .= getvalstr("Prezzo", $order->PrezzoLordo);
|
||||
$str .= getvalstr("Sconto", $order->PercSconto);
|
||||
$str .= getvalstr("Descr", $order->Descrizione);
|
||||
if ($order->PercSconto)
|
||||
$str .= getvalstr("Sconto", $order->PercSconto);
|
||||
if ($order->Descrizione)
|
||||
$str .= getvalstr("Descr", $order->Descrizione);
|
||||
$str .= '<br>';
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user