📚 Improved backend structure & logs for better tracking and management

This commit is contained in:
2025-06-11 09:39:30 +02:00
parent 6fe5882e7d
commit 66e2162f7a
17 changed files with 721 additions and 5 deletions

View File

@ -1156,6 +1156,12 @@ class JobManager {
option.text += ' - Warteschlange';
}
// Inaktive Drucker kennzeichnen
if (printer.active === false) {
option.text += ' (Inaktiv)';
option.style.color = '#9CA3AF';
}
printerSelect.appendChild(option.cloneNode(true));
quickSelect.appendChild(option.cloneNode(true));
filterSelect.appendChild(filterOption);