From 6a5b237bf6012f5ef1c9db9f0430ee51f7794b24 Mon Sep 17 00:00:00 2001 From: paoloar77 Date: Thu, 13 Jun 2024 14:34:31 +0200 Subject: [PATCH] aa --- app/CustomFuncPao.php | 3 ++- routes/web.php | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/CustomFuncPao.php b/app/CustomFuncPao.php index 8d338e44..c32be61f 100644 --- a/app/CustomFuncPao.php +++ b/app/CustomFuncPao.php @@ -349,7 +349,8 @@ function libriInPrevendita() $article->Titolo . $sep . ' Data Pubblicazione:' . date('d-m-Y', strtotime($article->DataPubblicazione)) . $sep . $article->DescrizioneStatoProdotto . ' (' . $article->DescrizioneFormato . ')' . $sep . - '[Quantita = ' . $article->QtaDisponibile . ']'; + '[Quantita = ' . $article->QtaDisponibile . ']' .$sep . + 'Imposta in PreORDINE!' . $sep ; $prodotto = Product::where('sku', $sku)->first(); if ($prodotto) { diff --git a/routes/web.php b/routes/web.php index b70b0bb1..c587a846 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6116,7 +6116,6 @@ Route::get('/ordineclientegm/{id}', function ($id) { Route::get('/provapao', [TestPaoController::class, 'provapao']); - Route::get('/aggiornapreorder/{idarticolo}/{aggiornapreordine}', function ($idarticolo, $aggiornapreordine) { setPreOrder($idarticolo, $aggiornapreordine, true); });