Relecture du code v1

This commit is contained in:
2026-01-21 11:03:11 +00:00
parent f11d1e62b4
commit 1f523e61b5
392 changed files with 255 additions and 246 deletions

View File

@@ -1,17 +1,3 @@
// document.getElementById("id_mois_concerne").addEventListener("change", function () {
// fetch(`/gestion-produit/recuperer-fournisseur-categorie/${this.value}`)
// .then(response => response.json())
// .then(data => {
// champs_fournisseur.innerHTML = "";
// data.forEach(fournisseur => {
// const option = document.createElement("option");
// option.value = fournisseur.id;
// option.text = fournisseur.nom_fournisseur;
// champs_fournisseur.appendChild(option);
// });
// })
// })
carnetBordMois = document.querySelector("#carnetBordForm #id_mois_concerne");
carnetBordMois.addEventListener("change", function () {