WIP: tout fonctionne + corrections de bug

This commit is contained in:
2026-07-07 10:42:02 +00:00
parent e55772986b
commit 18102d1627
4 changed files with 152 additions and 102 deletions
+12 -1
View File
@@ -97,7 +97,18 @@ document.addEventListener("DOMContentLoaded", () => {
detail.Frais_etat || 0;
document.getElementById("edit_frais_autre").value =
detail.Frais_autre || 0;
document.getElementById("edit_ordre").value = detail.Ordre;
document.getElementById("edit_type").value = (
detail.Type || ""
).toLowerCase();
document.getElementById("edit_etat").value = (
detail.Etat || ""
).toLowerCase();
document.getElementById("edit_ordre").value = (
detail.Ordre || ""
).toLowerCase();
modal.showModal();
}
}