
﻿
$(document).ready(function(){$("a.comando_eliminaCarrello").click(function(){var divTotaleCarrello=$(this).parents("div.container").find("div.totale");var divItem=$(this).parents("div.item");if(divItem==null||divItem.length==0){divItem=$(this).parents("div.itemUltimo");}
$.ajax({type:"POST",url:(window.location.host.indexOf("localhost")>-1&&window.location.pathname.toLowerCase().indexOf("/cmsweb/")>-1?"/CmsWeb":"")+"/Default.aspx/Ajax_EliminaCarrello",data:"{\"idProdotto\":"+$(this).attr("prod")+",\"idTaglia\":"+$(this).attr("taglia")+",\"idColore\":"+$(this).attr("colore")+",\"isAnteprima\":"+$(this).attr("ante")+",\"isMostraPuntiBonus\":"+$(this).attr("bns")+"}",contentType:"application/json; charset=utf-8",dataType:"json",success:function(response){if(typeof(response)!="undefined"&&typeof(response.d)!="undefined"&&response.d!=""){var jData=jQuery.parseJSON(response.d);if(divTotaleCarrello.length>0){var spanImportos=divTotaleCarrello.find("span");if(spanImportos.length>0){spanImportos.html(jData.totale);}
if(divItem.length>0){divItem.css("display","none");}}
else{location.href=unescape(window.location.pathname)+document.location.search;}}
else{}}});});$("a.comando_svuotaCarrello").click(function(){$.ajax({type:"POST",url:(window.location.host.indexOf("localhost")>-1&&window.location.pathname.toLowerCase().indexOf("/cmsweb/")>-1?"/CmsWeb":"")+"/Default.aspx/Ajax_SvuotaCarrello",data:"{\"isAnteprima\":"+$(this).attr("ante")+"}",contentType:"application/json; charset=utf-8",dataType:"json",success:function(response){if(typeof(response)!="undefined"&&typeof(response.d)!="undefined"&&response.d!=""){var jData=jQuery.parseJSON(response.d);location.href=unescape(window.location.pathname)+document.location.search;}
else{}}});});$("a.comando_incrementaQuantitaCarrello").click(function(){var divTotaleCarrello=$(this).parents("div.container").find("div.totale");var inputQuantita=$(this).parents("div.quantita").find("input");var divItem=$(this).parents("div.item");if(divItem==null||divItem.length==0){divItem=$(this).parents("div.itemUltimo");}
var divSubTotaleItem=null;if(divItem!=null&&divItem.length>0){divSubTotaleItem=divItem.find("div.subTot");}
$.ajax({type:"POST",url:(window.location.host.indexOf("localhost")>-1&&window.location.pathname.toLowerCase().indexOf("/cmsweb/")>-1?"/CmsWeb":"")+"/Default.aspx/Ajax_IncrementaQuantitaCarrello",data:"{\"idProdotto\":"+$(this).attr("prod")+",\"idTaglia\":"+$(this).attr("taglia")+",\"idColore\":"+$(this).attr("colore")+",\"isAnteprima\":"+$(this).attr("ante")+",\"isMostraPuntiBonus\":"+$(this).attr("bns")+"}",contentType:"application/json; charset=utf-8",dataType:"json",success:function(response){if(typeof(response)!="undefined"&&typeof(response.d)!="undefined"&&response.d!=""){var jData=jQuery.parseJSON(response.d);if(divTotaleCarrello.length>0){var spanImportos=divTotaleCarrello.find("span");if(spanImportos.length>0){spanImportos.html(jData.totale);}
if(inputQuantita.length>0){inputQuantita[0].value=jData.quantita.toString();}
if(divSubTotaleItem!=null&&divSubTotaleItem.length>0){var spanSubtot=divSubTotaleItem.find("span");if(spanSubtot.length>0){spanSubtot.html(jData.subTotale);}}}
else{location.href=unescape(window.location.pathname)+document.location.search;}}
else{}}});});$("a.comando_decrementaQuantitaCarrello").click(function(){var divTotaleCarrello=$(this).parents("div.container").find("div.totale");var inputQuantita=$(this).parents("div.quantita").find("input");var divItem=$(this).parents("div.item");if(divItem==null||divItem.length==0){divItem=$(this).parents("div.itemUltimo");}
var divSubTotaleItem=null;if(divItem!=null&&divItem.length>0){divSubTotaleItem=divItem.find("div.subTot");}
$.ajax({type:"POST",url:(window.location.host.indexOf("localhost")>-1&&window.location.pathname.toLowerCase().indexOf("/cmsweb/")>-1?"/CmsWeb":"")+"/Default.aspx/Ajax_DecrementaQuantitaCarrello",data:"{\"idProdotto\":"+$(this).attr("prod")+",\"idTaglia\":"+$(this).attr("taglia")+",\"idColore\":"+$(this).attr("colore")+",\"isAnteprima\":"+$(this).attr("ante")+",\"isMostraPuntiBonus\":"+$(this).attr("bns")+"}",contentType:"application/json; charset=utf-8",dataType:"json",success:function(response){if(typeof(response)!="undefined"&&typeof(response.d)!="undefined"&&response.d!=""){var jData=jQuery.parseJSON(response.d);if(divTotaleCarrello.length>0){var spanImportos=divTotaleCarrello.find("span");if(spanImportos.length>0){spanImportos.html(jData.totale);}
if(inputQuantita.length>0){inputQuantita[0].value=jData.quantita.toString();}
if(divSubTotaleItem!=null&&divSubTotaleItem.length>0){var spanSubtot=divSubTotaleItem.find("span");if(spanSubtot.length>0){spanSubtot.html(jData.subTotale);}}}
else{location.href=unescape(window.location.pathname)+document.location.search;}}
else{}}});});$("input.comando_modificaQuantitaCarrello").keydown(function(event){if(event.which==8||event.which==46||event.which==48||event.which==49||event.which==50||event.which==51||event.which==52||event.which==53||event.which==54||event.which==55||event.which==56||event.which==57||event.which==96||event.which==97||event.which==98||event.which==99||event.which==100||event.which==101||event.which==102||event.which==103||event.which==104||event.which==105||event.which==37||event.which==39){}
else{event.preventDefault();}});$("input.comando_modificaQuantitaCarrello").keyup(function(event){if(event.which==8||event.which==46||event.which==48||event.which==49||event.which==50||event.which==51||event.which==52||event.which==53||event.which==54||event.which==55||event.which==56||event.which==57||event.which==96||event.which==97||event.which==98||event.which==99||event.which==100||event.which==101||event.which==102||event.which==103||event.which==104||event.which==105){var divTotaleCarrello=$(this).parents("div.container").find("div.totale");var divItem=$(this).parents("div.item");if(divItem==null||divItem.length==0){divItem=$(this).parents("div.itemUltimo");}
var divSubTotaleItem=null;if(divItem!=null&&divItem.length>0){divSubTotaleItem=divItem.find("div.subTot");}
$.ajax({type:"POST",url:(window.location.host.indexOf("localhost")>-1&&window.location.pathname.toLowerCase().indexOf("/cmsweb/")>-1?"/CmsWeb":"")+"/Default.aspx/Ajax_ModificaQuantitaCarrello",data:"{\"idProdotto\":"+$(this).attr("prod")+",\"idTaglia\":"+$(this).attr("taglia")+",\"idColore\":"+$(this).attr("colore")+",\"isAnteprima\":"+$(this).attr("ante")+",\"nuovaQuantita\":"+$(this).attr("value")+",\"isMostraPuntiBonus\":"+$(this).attr("bns")+"}",contentType:"application/json; charset=utf-8",dataType:"json",success:function(response){if(typeof(response)!="undefined"&&typeof(response.d)!="undefined"&&response.d!=""){var jData=jQuery.parseJSON(response.d);if(divTotaleCarrello.length>0){var spanImportos=divTotaleCarrello.find("span");if(spanImportos.length>0){spanImportos.html(jData.totale);}
if(divSubTotaleItem!=null&&divSubTotaleItem.length>0){var spanSubtot=divSubTotaleItem.find("span");if(spanSubtot.length>0){spanSubtot.html(jData.subTotale);}}}
else{location.href=unescape(window.location.pathname)+document.location.search;}}
else{}}});}});$("a.comando_apriCarrello").click(function(){var divCarrelloItems=$(this).parents("div.carrelloSpesa").find("div.contItems");if(divCarrelloItems.length>0){divCarrelloItems.css("display","");}});$("a.comando_chiudiCarrello").click(function(){var divCarrelloItems=$(this).parents("div.carrelloSpesa").find("div.contItems");if(divCarrelloItems.length>0){divCarrelloItems.css("display","none");}});});
