Terminal-Farben nach Verbindung: - Terminals zeigen Farbe der angeschlossenen Leitung - Grau = keine Verbindung, farbig = Leitung angeschlossen - Neue Hilfsfunktion getTerminalConnectionColor() Leitungen hinter Blöcken: - Layer-Reihenfolge geändert: connections vor blocks - Professionelleres Erscheinungsbild Zeichenmodus-Verbesserungen: - Rechtsklick/Escape bricht nur Linie ab, nicht Modus - Crosshair-Cursor überall im SVG während Zeichenmodus - 30px Hit-Area für bessere Klickbarkeit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
956 B
SQL
27 lines
956 B
SQL
-- ============================================================================
|
|
-- Copyright (C) 2026 Alles Watt lauft
|
|
--
|
|
-- Dictionary table for installation system categories
|
|
-- ============================================================================
|
|
|
|
CREATE TABLE llx_c_kundenkarte_anlage_system
|
|
(
|
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
|
entity integer DEFAULT 0 NOT NULL,
|
|
|
|
code varchar(32) NOT NULL,
|
|
label varchar(128) NOT NULL,
|
|
description text,
|
|
|
|
picto varchar(64),
|
|
color varchar(8),
|
|
|
|
-- Tree display configuration (JSON)
|
|
tree_display_config text COMMENT 'JSON config for tree display options',
|
|
|
|
-- Verfügbare Ansichten: tree, graph, both
|
|
view_modes varchar(20) NOT NULL DEFAULT 'both',
|
|
|
|
position integer DEFAULT 0,
|
|
active tinyint DEFAULT 1 NOT NULL
|
|
) ENGINE=innodb;
|