This commit is contained in:
paoloar77
2024-09-05 17:44:53 +02:00
parent b37b403e35
commit 88bd28ab3d

View File

@@ -870,7 +870,11 @@ function showDettSingleOrdineWeb($idordine)
function showprice($prezzo)
{
return ' € ' . number_format($prezzo, 2);
try {
return ' € ' . number_format($prezzo, 2);
} catch (\Exception $e) {
return $prezzo;
}
}
function getRigaArticoloByArt($article, $ind, $sep)