bugfix on delete command

This commit is contained in:
Markus
2022-10-05 09:31:41 +02:00
parent 8d16903e40
commit 5e7cfdd8e4
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ function deleteId(id, table) {
cmnd = "deleteBill";
$.ajax({
type: "POST",
url: "/Ajax/"+cmnd+"/"+id,
url: "/Ajax/"+cmnd,
data: {"id" : id}, // serializes the form's elements.
success: function(data){
var ph = document.getElementById('alertbox');