dolibarr.idsconnect/sql/llx_idsconnect_supplier.sql
data d91f9dbc9a IDS Connect v2.1 - WKE + WKS mit Sonepar live getestet
- WKE-Flow (Warenkorb empfangen): Sonepar-Integration komplett funktionsfähig
  inkl. PriceBasis-Handling, Namespace-Stripping, OCI-Unterstützung
- WKS-Flow (Warenkorb senden): Lieferantenbestellung → Shop mit vorausgefüllten
  Artikeln, IDS Connect 2.0 XML-Format
- Callback v2.0: NOLOGIN-Seite statt Redirect, 7 Datenquellen, Debug-Daten
- URL-Handling: user_base_url-Tracking für Cross-Domain-Szenarien
- Sicherheit: CSRF, HMAC-SHA256 Tokens, XXE-Schutz, PIN für WKS
- Mock-Server für lokale Tests
- Dokumentation mit Roadmap (fehlende Features, Möglichkeiten)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 06:37:15 +01:00

25 lines
946 B
SQL

-- Copyright (C) 2026 Eduard Wisch <data@data-it-solution.de>
--
-- Großhändler-Konfiguration für IDS Connect
--
CREATE TABLE llx_idsconnect_supplier (
rowid integer AUTO_INCREMENT PRIMARY KEY,
ref varchar(128) NOT NULL,
label varchar(255) NOT NULL,
fk_soc integer DEFAULT NULL,
ids_url varchar(512) NOT NULL,
ids_version varchar(10) DEFAULT '2.5',
ids_customer_no varchar(128) NOT NULL,
ids_username varchar(255) NOT NULL,
ids_password varchar(512) NOT NULL,
testmode smallint DEFAULT 1,
active smallint DEFAULT 1,
note_public text,
note_private text,
date_creation datetime NOT NULL,
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
fk_user_creat integer NOT NULL,
fk_user_modif integer,
entity integer DEFAULT 1 NOT NULL
) ENGINE=InnoDB;