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