$(document).ready(function() {
$.get('/achats.xml',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('
');
});
$('.panier#boutique ul').append('Vider le 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("/../panier.php/ajouter/"+articleid+"/"+quantite, function(data) {
if(data != '1') {
alert(data);
alert("Impossible d'ajouter cet article au panier. Veuillez réessayer");
}
else {
$.get('/../achats.xml',function(xml) {
boutiqueList(xml);
});
jAlert('Votre article a été ajouté au panier.', 'Article ajouté');
}
});
}
function enleverDuPanier(articleid, quantite) {
$.get("/../panier.php/enlever/"+articleid+"/"+quantite, function(data) {
if(data != '1') {
alert("Impossible d'enlever cet article du panier, veuillez réessayer.");
}
else {
$.get('/../achats.xml',function(xml) {
boutiqueList(xml);
});
}
});
}
function viderPanier() {
$.get("/../panier.php/vider/", function(data) {
if(data != '1') {
alert("Impossible de vider votre panier, veuillez réessayer.");
}
else {
$.get('/../achats.xml',function(xml) {
boutiqueList(xml);
});
}
});
}