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 CreateCustomer {
initCreateCustomer() {
const toastNotification = document.getElementById("toastNotification");
const toast = new bootstrap.Toast(toastNotification);
let menuId = document.getElementById("menuId").value;
document
.getElementById("btnCreateCustomer")
.addEventListener("click", async function () {
@@ -41,7 +42,7 @@ class CreateCustomer {
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();

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();

View File

@@ -32,6 +32,7 @@ class Customers {
tableContainer.innerHTML = "";
let canUpdate = tableContainer.getAttribute("data-updater") === "1";
let canDelete = tableContainer.getAttribute("data-destroyer") === "1";
let menuId = tableContainer.getAttribute("data-menuId");
this.table = new Grid({
columns: [
"ID",
@@ -45,15 +46,15 @@ class Customers {
name: "Action",
formatter: (cell) => {
let buttons = "";
if (canUpdate) {
buttons += `
<a href="/data/customers/${cell}/edit" class="btn btn-yellow btn-sm d-inline-flex align-items-center justify-content-center">
<a href="/data/customers/${cell}/edit?menu_id=${menuId}" class="btn btn-yellow btn-sm d-inline-flex align-items-center justify-content-center">
<i class='bx bx-edit'></i>
</a>
`;
}
if (canDelete) {
buttons += `
<button data-id="${cell}" class="btn btn-sm btn-red btn-delete-customers d-inline-flex align-items-center justify-content-center">
@@ -61,12 +62,14 @@ class Customers {
</button>
`;
}
if (!canUpdate && !canDelete) {
buttons = `<span class="text-muted">No Privilege</span>`;
}
return gridjs.html(`<div class="d-flex justify-content-center gap-2">${buttons}</div>`);
return gridjs.html(
`<div class="d-flex justify-content-center gap-2">${buttons}</div>`
);
},
},
],

View File

@@ -20,6 +20,7 @@ class UploadCustomers {
initDropzone() {
const toastNotification = document.getElementById("toastNotification");
const toast = new bootstrap.Toast(toastNotification);
let menuId = document.getElementById("menuId").value;
var previewTemplate,
dropzonePreviewNode = document.querySelector(
"#dropzone-preview-list"
@@ -46,7 +47,7 @@ class UploadCustomers {
response.message;
toast.show();
setTimeout(() => {
window.location.href = "/data/customers";
window.location.href = `/data/customers?menu_id=${menuId}`;
}, 2000);
});
this.on("error", function (file, errorMessage) {