This commit is contained in:
Paolo A
2024-08-13 13:50:19 +00:00
6 changed files with 2116 additions and 40 deletions

View File

@@ -497,6 +497,7 @@ function showOrdini()
foreach ($orders as $order) {
$product = Product::where('sku', $order->CodArticoloGM)->first();
dd($product);
// $product = null;
if ($product)
@@ -2020,3 +2021,23 @@ function getClienti()
return null;
}
}
function getvalstr($mystr, $value, $separato = false)
{
$my = '';
if ($mystr) {
$my = " " . $mystr . ": " . $value;
} else {
$my = $value;
if (!$separato) {
$my = " " . $value;
}
}
if ($separato) {
$my = '[' . $my . '] ';
}
return $my;
}

2043
app/CustomFuncPao.php.save Normal file

File diff suppressed because it is too large Load Diff