$(document).ready(function() { $.get('/votre-panier/liste/',function(xml) { boutiqueList(xml); }); }); function boutiqueList(xml) { $('.panier#boutique ul').slideUp(function() { $('.panier#boutique ul li').remove(); if ($('root items item',xml).length > 0) { $('root items item',xml).each(function() { $('.panier#boutique ul').append('
  • '+$('nombre',this).text()+'x '+$('nom',this).text()+'
  • '); }); $('.panier#boutique ul').append('
  • Vider mon panier - Commander
  • '); } else { $('.panier#boutique ul').append('
  • Aucun article
  • '); } $('.panier#boutique ul').append('
  • Total TTC : '+$('total',xml).text()+' €
  • '); $('.panier#boutique #paypal form input[@name=amount]').attr('value',$('total',xml).text()); $('.panier#boutique ul').slideDown(); }); } function ajouterAuPanier(articleid, quantite) { $.get("/votre-panier/ajouter/" + articleid + "/" + quantite, function(data) { if(data != '1' && data != '2') { alert("Impossible d'ajouter cet article au panier. Veuillez reessayer"); } else if(data == '2') { alert("Vous ne pouvez pas commander plus que le stock disponible"); } else { $.get('/votre-panier/liste',function(xml) { boutiqueList(xml); }); } }); } function enleverDuPanier(articleid, quantite) { $.get("/votre-panier/enlever/" + articleid + "/" + quantite, function(data) { if(data != '1') { alert("Impossible d'enlever cet article du panier. Veuillez reessayer"); } else { $.get('/votre-panier/liste',function(xml) { boutiqueList(xml); }); } }); } function viderPanier() { $.get("/votre-panier/vider", function(data) { if(data != '1') { alert("Impossible de vider votre panier. Veuillez reessayer"); } else { $.get('/votre-panier/liste',function(xml) { boutiqueList(xml); }); } }); }