|
|
@@ -305,14 +305,15 @@ function chat_systeme_commande() { |
|
|
|
var quantite = parseInt($(this).parent().parent().find('input.quantity').val()) ; |
|
|
|
var quantite_restante = parseInt($(this).parent().parent().parent().find('.quantite-restante .nb').html()) ; |
|
|
|
var quantite_max = $(this).parent().parent().parent().parent().data('quantite-max') ; |
|
|
|
|
|
|
|
var no_limit = $(this).parent().parent().parent().parent().data('no-limit') ; |
|
|
|
|
|
|
|
if($(this).hasClass('moins') && quantite != 0) { |
|
|
|
quantite -- ; |
|
|
|
quantite_restante ++ ; |
|
|
|
} |
|
|
|
|
|
|
|
if($(this).hasClass('plus') ){ |
|
|
|
if(quantite_restante > 0) { |
|
|
|
if(quantite_restante > 0 || no_limit) { |
|
|
|
quantite ++ ; |
|
|
|
quantite_restante -- ; |
|
|
|
} |
|
|
@@ -326,7 +327,7 @@ function chat_systeme_commande() { |
|
|
|
else { |
|
|
|
$(this).parent().parent().parent().find('.quantite-restante').hide() ; |
|
|
|
} |
|
|
|
if(quantite_restante == 0) { |
|
|
|
if(quantite_restante == 0 && !no_limit) { |
|
|
|
$(this).parent().parent().parent().find('.epuise').fadeIn() ; |
|
|
|
} |
|
|
|
else { |
|
|
@@ -386,7 +387,10 @@ function chat_systeme_commande_produits_dispos(str_date, date) { |
|
|
|
else $('.produit-'+id_produit).hide() ; |
|
|
|
|
|
|
|
var quantite_restante = produit.quantite_max - produit.quantite_commandee ; |
|
|
|
|
|
|
|
var no_limit = false ; |
|
|
|
if(!produit.quantite_max) |
|
|
|
no_limit = true ; |
|
|
|
|
|
|
|
$('.produit-'+id_produit).attr('data-quantite-max',produit.quantite_max) ; |
|
|
|
$('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ; |
|
|
|
|
|
|
@@ -406,7 +410,8 @@ function chat_systeme_commande_produits_dispos(str_date, date) { |
|
|
|
} |
|
|
|
|
|
|
|
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) { |
|
|
|
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 { |