This commit is contained in:
paoloar77
2024-07-22 12:18:19 +02:00
parent 0c8bd8fb30
commit bbe01cf1ab
3 changed files with 6 additions and 3 deletions

View File

@@ -704,13 +704,13 @@ function showDettOrdini()
return $str;
}
function showDettOrdiniWeb()
function showDettOrdiniWeb($idordine)
{
try {
$str = "Ordini T_WEB_TestateOrdini:" . PHP_EOL . '<br>';
$orders = AppOrderWeb::all();
$orders = AppOrderWeb::where('IdInternet', $idordine)->get();
// Show the fields of the orders
foreach ($orders as $order) {