This commit is contained in:
2026-03-13 11:15:45 +00:00
parent 51a5d52f9f
commit 1376bc303b
2 changed files with 6 additions and 4 deletions

View File

@@ -28804,9 +28804,11 @@ function no_presciption()
const codeLangue = $("#codeLangue").val();
// Appel d'une boîte de confirmation personnalisée, adaptée à la langue
confirm_ebene_sweet(
v_msg, v_msgEng,
() => { // Callback exécuté en cas de confirmation "Oui/Yes"
v_msg, v_msgEng
).then((confirmed) => {
if (confirmed) {
$.ajax({
url: $("#racineWeb").val() + "Ajaxenregistrerprescription/noprescription/",
type: 'post',
@@ -28822,6 +28824,6 @@ function no_presciption()
}
});
}
);
});
}
}