This commit is contained in:
paoloar77
2024-06-13 14:34:31 +02:00
parent c6a7bf9102
commit 6a5b237bf6
2 changed files with 2 additions and 2 deletions

View File

@@ -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 = <span style="color:'.$colore.'; font-weight: bold;">' . $article->QtaDisponibile . '</span>]';
'[Quantita = <span style="color:'.$colore.'; font-weight: bold;">' . $article->QtaDisponibile . '</span>]' .$sep .
'<a href="' . $article->permalink . '/aggiornapreorder/'.$article->IdArticolo.'/1" target="_blank">Imposta in PreORDINE!</a>' . $sep ;
$prodotto = Product::where('sku', $sku)->first();
if ($prodotto) {

View File

@@ -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);
});