fix pdam redirect back and advertisement partial update redirect

This commit is contained in:
arifal
2025-03-13 13:57:53 +07:00
parent e5db2294b4
commit e47ab36d5e
14 changed files with 72 additions and 78 deletions

View File

@@ -6,6 +6,7 @@ class UpdateCustomer {
initUpdateCustomer() {
const toastNotification = document.getElementById("toastNotification");
const toast = new bootstrap.Toast(toastNotification);
let menuId = document.getElementById("menuId").value;
document
.getElementById("btnUpdateCustomer")
.addEventListener("click", async function () {
@@ -41,7 +42,7 @@ class UpdateCustomer {
result.message;
toast.show();
setTimeout(() => {
window.location.href = "/data/customers";
window.location.href = `/data/customers?menu_id=${menuId}`;
}, 2000);
} else {
let error = await response.json();