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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
<script>
function LignePanier (code, qte, prix)
{
this.codeArticle = code;
this.qteArticle = qte;
this.prixArticle = prix;
this.ajouterQte = function(qte)
{
this.qteArticle += qte;
}
this.getPrixLigne = function()
{
var resultat = this.prixArticle * this.qteArticle;
return resultat;
}
this.getCode = function()
{
return this.codeArticle;
}
}
function Panier()
{
this.liste = [];
this.ajouterArticle = function(code, qte, prix)
{
var index = this.getArticle(code);
if (index == -1) this.liste.push(new LignePanier(code, qte, prix));
else this.liste[index].ajouterQte(qte);
}
this.getPrixPanier = function()
{
var total = 0;
for(var i = 0 ; i < this.liste.length ; i++)
total += this.liste[i].getPrixLigne();
return total;
}
this.getArticle = function(code)
{
for(var i = 0 ; i <this.liste.length ; i++)
if (code == this.liste[i].getCode()) return i;
return -1;
}
this.supprimerArticle = function(code)
{
var index = this.getArticle(code);
if (index > -1) this.liste.splice(index, 1);
}
}
var catalogue= new Array(); // on créé un tableau catalogue
catalogue.push(new Produit(1, "ref 1", "ordinateur", 800));// je remplis le tableau catalogue avec push() qui ajoute un ou plusieurs éléments à la fin d'un tableau et retourne la nouvelle taille du tableau.
catalogue.push(new Produit(25, "ref 2","souris", 20.45));
catalogue.push(new Produit(3, "ref 3","uniter centrale", 620));
catalogue.push(new Produit(4, "ref 4","ecran", 120));
catalogue.forEach(function (item, index, array) {
// console.log(item, index);
});
function Produit(id, reference, designation, prix) {
this.id_produit = "CA_" + id;
this.ref_produit = reference;
this.prix_produit = prix;
this.designation_produit = designation;
// la fonction qui va tout faire
this.addRender = function(elemDest) {
const html = `
<div class="article">
<h2 class="titre">${this.designation_produit}</h2>
<p class="reference"><span>Réf. article </span>${this.ref_produit}</p>
<input type="hidden" value="${this.id_produit}" name="IDprod[]">
<input type="hidden" value="${this.ref_produit}" name="art[]">
<p class="prix"><span>Prix unitaire </span><input type="hidden" name="prix[]" value="${this.prix_produit}">${this.prix_produit.toFixed(2)} </p>
<p class="nombre"><span>Nbr</span><input type="number" name="quantite[]" id="nombre[]" placeholder="0" min="0"></p>
<p class="total"><span>Total</span><output class="total-ligne"></output> </p>
<p><button type="button" class="btn-ajout">panier</button></p>
</div>`;
elemDest.insertAdjacentHTML("beforeend", html);
return this;
}
}
function afficheCatalogue(idElement) {
const elemDestination = document.getElementById(idElement);
catalogue.forEach((article) => {
article.addRender(elemDestination);
});
}
afficheCatalogue("catalogue");
function calculArticle(input) {
// get le parent et autres
const parent = input.closest(".article");
const elemIDprod = parent.querySelector("[name='IDprod[]']");
const code = elemIDprod.value.substring(3);
const elemprix = parent.querySelector("[name='prix[]']");
const prix = elemprix.value;
//alert(prix.value);
const qte = input.value;
const elemTotal = parent.querySelector(".total-ligne");
// le calcul
const valuePrix = +input.value * +elemprix.value;
// l'affichage
elemTotal.textContent = valuePrix.toFixed(2);
ajouter(code,qte,prix)
}
var nombre = document.getElementById('nombre[]');
nombre.addEventListener('keypress', function (ContNBR){
if (ContNBR.charCode < 48 || ContNBR.charCode > 57) {
ContNBR.preventDefault();
}
});
const inputs = document.querySelectorAll("[name='quantite[]']");
inputs.forEach((input) => {
input.addEventListener("input", (e) => {
calculArticle(input);
});
});
function ajouter(code,qte,prix)
{
/* alert(code);
alert(qte);
alert(prix);*/
/* var code = parseInt(document.getElementById("id").value);
var qte = parseInt(document.getElementById("qte").value);
var prix = parseInt(document.getElementById("prix").value);*/
var monPanier = new Panier();
monPanier.ajouterArticle(code, qte, prix);
var tableau = document.getElementById("tableau");
var longueurTab = parseInt(document.getElementById("nbreLignes").innerHTML);
if (longueurTab > 0)
{
for(var i = longueurTab ; i > 0 ; i--)
{
monPanier.ajouterArticle(parseInt(tableau.rows[i].cells[0].innerHTML), parseInt(tableau.rows[i].cells[1].innerHTML), parseInt(tableau.rows[i].cells[2].innerHTML));
tableau.deleteRow(i);
}
}
var longueur = monPanier.liste.length;
for(var i = 0 ; i < longueur ; i++)
{
var ligne = monPanier.liste[i];
var ligneTableau = tableau.insertRow(-1);
var colonne1 = ligneTableau.insertCell(0);
colonne1.innerHTML += ligne.getCode();
var colonne2 = ligneTableau.insertCell(1);
colonne2.innerHTML += ligne.qteArticle;
var colonne3 = ligneTableau.insertCell(2);
colonne3.innerHTML += ligne.prixArticle;
var colonne4 = ligneTableau.insertCell(3);
colonne4.innerHTML += ligne.getPrixLigne();
}
document.getElementById("prixTotal").innerHTML = monPanier.getPrixPanier();
document.getElementById("nbreLignes").innerHTML = longueur;
}
function supprimer(code)
{
var monPanier = new Panier();
var tableau = document.getElementById("tableau");
var longueurTab = parseInt(document.getElementById("nbreLignes").innerHTML);
if (longueurTab > 0)
{
for(var i = longueurTab ; i > 0 ; i--)
{
monPanier.ajouterArticle(parseInt(tableau.rows[i].cells[0].innerHTML), parseInt(tableau.rows[i].cells[1].innerHTML), parseInt(tableau.rows[i].cells[2].innerHTML));
tableau.deleteRow(i);
}
}
monPanier.supprimerArticle(code);
var longueur = monPanier.liste.length;
for(var i = 0 ; i < longueur ; i++)
{
var ligne = monPanier.liste[i];
var ligneTableau = tableau.insertRow(-1);
var colonne1 = ligneTableau.insertCell(0);
colonne1.innerHTML += ligne.getCode();
var colonne2 = ligneTableau.insertCell(1);
colonne2.innerHTML += ligne.qteArticle;
var colonne3 = ligneTableau.insertCell(2);
colonne3.innerHTML += ligne.prixArticle;
var colonne4 = ligneTableau.insertCell(3);
colonne4.innerHTML += ligne.getPrixLigne();
}
document.getElementById("prixTotal").innerHTML = monPanier.getPrixPanier();
document.getElementById("nbreLignes").innerHTML = longueur;
}
</script>
<section class="wrapper">
<div class="produit">
<h2>Liste produits</h2>
<div id="catalogue" class="articles"></div>
</div>
<div class="panier">
<form id="form-panier">
<h2>Panier <output id="total">---</output></h2>
<div id="panier" class=""></div>
</form>
</div>
</section>
<section class="container">
<article class="well form-inline pull-left col-lg-5">
<legend>Contenu du panier</legend>
<table id="tableau" class="table">
<thead>
<tr>
<th>Code</th>
<th>Qte</th>
<th>Prix unitaire</th>
<th>Prix de la ligne</th>
<th>Supprimer</th>
</tr>
</thead>
</table>
<br><label>Prix du panier total</label> : <label id = "prixTotal"></label>
<label id = "nbreLignes" hidden>0</label>
</article>
</section> |
Partager