PWA Mobile App für Schaltschrank-Dokumentation vor Ort: - Token-basierte Authentifizierung (15 Tage gültig) - Kundensuche mit Offline-Cache - Anlagen-Auswahl und Offline-Laden - Felder/Hutschienen/Automaten erfassen - Automatische Synchronisierung wenn wieder online - Installierbar auf dem Smartphone Home Screen - Touch-optimiertes Dark Mode Design - Quick-Select für Automaten-Werte (B16, C32, etc.) Schaltplan-Editor Verbesserungen: - Block Hover-Tooltip mit show_in_hover Feldern - Produktinfo mit Icon im Tooltip - Position und Breite in TE Neue Dateien: - pwa.php, pwa_auth.php - PWA Einstieg & Auth - ajax/pwa_api.php - PWA AJAX API - js/pwa.js, css/pwa.css - PWA App & Styles - sw.js, manifest.json - Service Worker & Manifest - img/pwa-icon-192.png, img/pwa-icon-512.png Version: 5.2.0 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
1.2 KiB
SQL
Executable file
28 lines
1.2 KiB
SQL
Executable file
-- ============================================================================
|
|
-- Copyright (C) 2026 Alles Watt lauft
|
|
--
|
|
-- Equipment Panel table (Schaltschrankfelder)
|
|
-- Represents physical sections/fields in a distribution board
|
|
-- ============================================================================
|
|
|
|
CREATE TABLE llx_kundenkarte_equipment_panel (
|
|
rowid INTEGER AUTO_INCREMENT PRIMARY KEY,
|
|
entity INTEGER DEFAULT 1 NOT NULL,
|
|
|
|
fk_anlage INTEGER NOT NULL, -- Zählerschrank/UV that contains this panel
|
|
label VARCHAR(128), -- "Feld 1", "Linkes Feld", etc.
|
|
position INTEGER DEFAULT 0, -- Order (left to right)
|
|
|
|
note_private TEXT,
|
|
status SMALLINT DEFAULT 1, -- 1=active, 0=inactive
|
|
|
|
date_creation DATETIME,
|
|
tms TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
fk_user_creat INTEGER,
|
|
fk_user_modif INTEGER,
|
|
import_key VARCHAR(14),
|
|
|
|
INDEX idx_panel_anlage (fk_anlage),
|
|
CONSTRAINT fk_panel_anlage FOREIGN KEY (fk_anlage)
|
|
REFERENCES llx_kundenkarte_anlage(rowid) ON DELETE CASCADE
|
|
) ENGINE=InnoDB;
|