ckarone Posted January 25, 2011 Share Posted January 25, 2011 Bonjour,J'ai modifier la gestion des déclinaisons pour afficher une date de dispo en fonction de chaque déclinaisons du coté BO et FO .Cela fonctionne bien mais mon problème est situé au niveau de la date qui est au fomat jj-mm-yy (exemple 15-03-2011) et le JS me retourne pas ma date mais -1999 obtenu par la soustraction de 15-3-2011. C'est probablement pas compliqué mais je n'ai pas de grandes connaissances en JS.Voici le JS en question: function addCombination(idCombination, arrayOfIdAttributes, quantity, dispo_date, dispo_code, price, ecotax, id_image, reference) { globalQuantity += quantity; var combination = new Array(); combination['idCombination'] = idCombination; combination['quantity'] = quantity; if(dispo_code==1){combination['dispo_code'] = 'En stock'} if(dispo_code==2){combination['dispo_code'] = 'En commande'} if(dispo_code==3){combination['dispo_code'] = 'En rupture'} if(dispo_code==4){combination['dispo_code'] = 'Sur commande'} if(dispo_code==5){combination['dispo_code'] = 'Pre commande'} combination['dispo_date'] = dispo_date; combination['idsAttributes'] = arrayOfIdAttributes; combination['price'] = price; combination['ecotax'] = ecotax; combination['image'] = id_image; combination['reference'] = reference; combinations.push(combination); } Merci à vous Link to comment Share on other sites More sharing options...
ckarone Posted January 27, 2011 Author Share Posted January 27, 2011 J'ai trouvé la solution, dans la page produit dans le JS qui liste les déclinaisons, il faut ajout entourer l'info date avec des '' pour garder la variable en en variable de caractères!!Ckarone Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now