$(function() { $('.button_acquista').click(function() { var strID_Prodotto = $(this).attr('name'); if ( strID_Prodotto != '' ) { var strID_Taglia = $(".taglia:checked").val(); var strID_Taglia2 = $(".taglia2:checked").val(); var strID_Colore = $(".colore:checked").val(); var strID_Colore2 = $(".colore2:checked").val(); var strID_Materiale = $(".materiale:checked").val(); var strID_Materiale2 = $(".materiale2:checked").val(); $.ajax({ type: "POST", async: false, dataType: "json", url: "/tpl/default/assets/ajax/setCarrello.php", data: "action=setCarrello&pstrID_Prodotto=" + strID_Prodotto + "&pintQuantita=" + $("#fp_quantita").val() + "&pstrCarrelloTipo=" + $("#fp_carrello_tipo").val() + "&pstrLangCurrent=" + $("#fp_lang_current").val() + ( strID_Taglia != undefined && strID_Taglia != "" ? "&pstrID_Taglia=" + strID_Taglia : "" ) + ( strID_Taglia2 != undefined && strID_Taglia2 != "" ? "&pstrID_Taglia2=" + strID_Taglia2 : "" ) + ( strID_Colore != undefined && strID_Colore != "" ? "&pstrID_Colore=" + strID_Colore : "" ) + ( strID_Colore2 != undefined && strID_Colore2 != "" ? "&pstrID_Colore2=" + strID_Colore2 : "" ) + ( strID_Materiale != undefined && strID_Materiale != "" ? "&pstrID_Materiale=" + strID_Materiale : "" ) + ( strID_Materiale2 != undefined && strID_Materiale2 != "" ? "&pstrID_Materiale2=" + strID_Materiale2 : "" ), success: function(data) { if ( data.status == 'ok' ) { if ( ! parseInt( data.disponibile ) ) { swal("Ops...", "Il prodotto non è disponibile", "error"); } else if ( parseInt( data.max ) > 0 ) { swal({ title: "Ok, il prodotto è già nel carrello!", text: "", type: "success", showCancelButton: true, cancelButtonText: "Resta dove sei", confirmButtonText: "Vai al carrello", closeOnConfirm: true }, function() { location.href = '/carrello/'; }); } else { $('#cart-bar').removeClass('d-none'); $('#cart-bar a span').text( data.totale_prodotti ); swal({ title: "Ok, il prodotto è nel carrello!", text: "Resta dove sei per continuare gli acquisti oppure vai al carrello per completare il tuo ordine.", type: "success", showCancelButton: true, cancelButtonText: "Resta dove sei", confirmButtonText: "Vai al carrello", closeOnConfirm: true }, function() { location.href = '/carrello/'; }); } } else swal("Ops...", "LNG_AJAX_INSCARRELLO", "error"); }, error: function(data) { swal("Ops...", "Procedura non completata.", "error"); } }); /* ajax */ } }); });