1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| $(function(){
$(document).ready(function(){
$('#commande').load('fctcmd/showorder.php');
})
$('.gr').click(function(){ /*Sélecttion du groupe qui doit être affiché dans la liste déroulante*/
var groupe = $(this).text();
$('#products').load('fctcmd/getgroup.php',{group:groupe});
})
/*Supprimer un article*/
$('.delArticle').click(function(){
$('#loading').show();
var ref = $(this).attr('value');
$.ajax({
type:'POST',
url: 'fctcmd/editproduct.php',
data: 'ref='+ref,
success:function(){
$('#loading').hide();
$('#commande').empty();
$('#commande').load('fctcmd/showorder.php');
}
})
})
/*Ajouter un article de la gamme*/
$('#gammeAjoute').click(function(){
$('#commande').hide();
$('#loading').show();
var quantite = $('#gammeQua').val();
var reference = $('#art').val();
$.ajax({
type:'POST',
url: 'fctcmd/addproduct.php',
data: 'qua='+quantite+'&ref='+reference,
success:function(){
$('#commande').show();
$('#loading').hide();
$('#commande').empty();
$('#commande').load('fctcmd/showorder.php');
}
})
})
}) |
Partager