|
|
@@ -306,17 +306,31 @@ function chat_systeme_commande() { |
|
|
|
var quantite_restante = parseInt($(this).parent().parent().parent().find('.quantite-restante .nb').html()) ; |
|
|
|
var quantite_max = $(this).parent().parent().parent().parent().data('quantite-max') ; |
|
|
|
|
|
|
|
if($(this).hasClass('moins') && quantite != 0) |
|
|
|
quantite -- ; |
|
|
|
if($(this).hasClass('moins') && quantite != 0) { |
|
|
|
quantite -- ; |
|
|
|
quantite_restante ++ ; |
|
|
|
} |
|
|
|
|
|
|
|
if($(this).hasClass('plus') ){ |
|
|
|
if(quantite + 1 <= quantite_restante || !quantite_max) { |
|
|
|
if(quantite_restante > 0) { |
|
|
|
quantite ++ ; |
|
|
|
quantite_restante -- ; |
|
|
|
} |
|
|
|
else { |
|
|
|
if(quantite_restante <= 5) { |
|
|
|
$(this).parent().parent().parent().find('.quantite-restante').hide().fadeIn() ; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$(this).parent().parent().parent().find('.quantite-restante .nb').html(quantite_restante) ; |
|
|
|
|
|
|
|
if(quantite_restante <= 5 && quantite_restante > 0) { |
|
|
|
$(this).parent().parent().parent().find('.quantite-restante').fadeIn() ; |
|
|
|
} |
|
|
|
else { |
|
|
|
$(this).parent().parent().parent().find('.quantite-restante').hide() ; |
|
|
|
} |
|
|
|
if(quantite_restante == 0) { |
|
|
|
$(this).parent().parent().parent().find('.epuise').fadeIn() ; |
|
|
|
} |
|
|
|
else { |
|
|
|
$(this).parent().parent().parent().find('.epuise').hide() ; |
|
|
|
} |
|
|
|
|
|
|
|
$(this).parent().parent().find('input.quantity').val(quantite) ; |
|
|
@@ -373,25 +387,32 @@ function chat_systeme_commande_produits_dispos(str_date, date) { |
|
|
|
|
|
|
|
var quantite_restante = produit.quantite_max - produit.quantite_commandee ; |
|
|
|
|
|
|
|
$('.produit-'+id_produit).attr('data-quantite-max',produit.quantite_max) ; |
|
|
|
$('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ; |
|
|
|
|
|
|
|
if(produit.quantite_max && (!quantite_restante || quantite_restante < 0 || produit.epuise)) { |
|
|
|
$('.produit-'+id_produit+' .epuise').show() ; |
|
|
|
$('.produit-'+id_produit+' .quantite-restante').hide() ; |
|
|
|
$('.produit-'+id_produit+' .input-group').hide() ; |
|
|
|
|
|
|
|
if(!$('#id-commande').val() && $('.produit-'+id_produit+' .quantity').val() == 0) |
|
|
|
{ |
|
|
|
$('.produit-'+id_produit+' .quantite-restante').hide() ; |
|
|
|
$('.produit-'+id_produit+' .input-group').hide() ; |
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
$('.produit-'+id_produit+' .epuise').hide() ; |
|
|
|
$('.produit-'+id_produit+' .input-group').show() ; |
|
|
|
$('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ; |
|
|
|
|
|
|
|
if($('.produit-'+id_produit+' .quantite-restante').size()) { |
|
|
|
if(parseInt($('.produit-'+id_produit+' .quantite-restante .nb').html()) > 5) { |
|
|
|
$('.produit-'+id_produit+' .quantite-restante').hide() ; |
|
|
|
} |
|
|
|
else { |
|
|
|
$('.produit-'+id_produit+' .quantite-restante').show() ; |
|
|
|
} |
|
|
|
} |
|
|
|
$('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ; |
|
|
|
} |
|
|
|
|
|
|
|
if($('.produit-'+id_produit+' .quantite-restante').size()) { |
|
|
|
if(parseInt($('.produit-'+id_produit+' .quantite-restante .nb').html()) > 5 || parseInt($('.produit-'+id_produit+' .quantite-restante .nb').html()) == 0) { |
|
|
|
$('.produit-'+id_produit+' .quantite-restante').hide() ; |
|
|
|
} |
|
|
|
else { |
|
|
|
$('.produit-'+id_produit+' .quantite-restante').show() ; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
|