- buildTerminalPhaseMap: Schritt 1b - Leitungen mit expliziter Farbe als Startpunkte (nur Gerät→Gerät, keine Abgänge) - buildTerminalPhaseMap: Block-Durchreichung (Top↔Bottom) entfernt - buildTerminalPhaseMap: Junction-Verbindungen (Terminal→Leitung) bidirektional verarbeitet via _connectionById Index - PWA: Abgangs-Rendering mit Index-Fallback wenn source_terminal_id fehlt - PWA: Abgangs-Labels max-height 130px, min-height 30px - Auto-Naming: EquipmentCarrier create/update → 'R' + count - Auto-Naming: EquipmentPanel update → 'Feld ' + count - pwa_api.php: Hardcoded Fallbacks 'Feld'/'Hutschiene' entfernt - pwa.js: Hutschiene Auto-Naming dynamisch aus Panel-Carrier-Anzahl - kundenkarte.js: Carrier-Dialog Placeholder 'z.B. R1 (automatisch)' - SW Cache auf v12.5 hochgezählt Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
852 B
SQL
Executable file
19 lines
852 B
SQL
Executable file
-- ========================================================================
|
|
-- Copyright (C) 2024 Data IT Solution
|
|
--
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU General Public License as published by
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
-- (at your option) any later version.
|
|
-- ========================================================================
|
|
|
|
CREATE TABLE llx_kundenkarte_anlage_accessory (
|
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
|
fk_anlage integer NOT NULL,
|
|
fk_product integer NOT NULL,
|
|
qty double DEFAULT 1,
|
|
rang integer DEFAULT 0,
|
|
note varchar(255) DEFAULT NULL,
|
|
date_creation datetime DEFAULT NULL,
|
|
fk_user_creat integer DEFAULT NULL
|
|
) ENGINE=InnoDB;
|