Bladeren bron

Bug : impossible de commander certains produits

Les produits qui ont une quantité max de définis ne peuvent pas être commandés
master
keun 7 jaren geleden
bovenliggende
commit
113f28042e
1 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen
  1. +3
    -2
      frontend/web/js/lechatdesnoisettes.js

+ 3
- 2
frontend/web/js/lechatdesnoisettes.js Bestand weergeven

@@ -387,10 +387,11 @@ 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 ;
var no_limit = 0 ;
if(!produit.quantite_max)
no_limit = true ;
no_limit = 1 ;
$('.produit-'+id_produit).attr('data-no-limit',no_limit) ;
$('.produit-'+id_produit).attr('data-quantite-max',produit.quantite_max) ;
$('.produit-'+id_produit+' .quantite-restante .nb').html(quantite_restante) ;

Laden…
Annuleren
Opslaan