This commit is contained in:
2026-03-20 17:13:38 +01:00
parent 4c84735b75
commit c043ee9a52
1152 changed files with 317560 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
$(function() {
$("#user_input").autocomplete({
source: "inc/suchepatient.php",
minLength: 3,
select: function( event, ui ) {
event.preventDefault();
$("#userid_input").val(ui.item.id);
$("#user_input").val(ui.item.value);
$("#formbenutzersuche").submit();
}
});
});
function behandelt(str) {
result = $.ajax({
type: 'POST',
async: false,
url: 'inc/behandelt.php',
data: ({
terminid: str
})
}).responseText;
document.getElementById(str).style.display = 'none';
//window.location.reload(false);
}
function submitForm(sub) {
e.preventDefault();
result = $.ajax({
type: 'POST',
async: false,
url: 'impfadmin.php',
data: ({
aktion: 4,
searchdate: sub
})
}).responseText;
//window.location.reload(false);
document.body.innerHTML = result;
}