feat: add stolik2_api.js for real-time table order tracking and remove obsolete test files.

This commit is contained in:
2026-05-24 22:25:24 +02:00
parent f95f578bab
commit a925246df1
8 changed files with 2 additions and 273 deletions

View File

@@ -427,6 +427,7 @@ const params = new URLSearchParams(location.search);
window.openBillDialog = async function() {
billState = { payment: '', doc: '', nip: '', company: null, selectedBillId: null };
document.getElementById("billModal").classList.add("active");
document.body.style.overflow = 'hidden'; // Zablokuj scroll tła
document.getElementById("billLoading").classList.remove("hidden");
document.getElementById("billListContainer").classList.add("hidden");
@@ -515,6 +516,7 @@ const params = new URLSearchParams(location.search);
window.closeBillDialog = function() {
document.getElementById("billModal").classList.remove("active");
document.body.style.overflow = ''; // Odblokuj scroll tła
};
window.goToStep = function(stepId) {