Web UI - Infor CloudSuite-style split-panel layout (items.html rewrite): - Replace modal-based item detail with inline split-panel workspace - Horizontal mode: item list on left, tabbed detail panel on right - Vertical mode: detail panel on top, item list below - Detail tabs: Main, Properties, Revisions, BOM, Where Used - Ctrl+F opens in-page filter overlay with fuzzy search - Column config gear icon with per-layout-mode persistence - Search scope toggle pills (All / Part Number / Description) - Selected row highlight with accent border - Responsive breakpoint forces vertical below 900px - Create/Edit/Delete remain as modal dialogs Web UI - Projects page: - New projects.html template with full CRUD - Project table: Code, Name, Description, Item count, Created, Actions - Create/Edit/Delete modals - Click project code navigates to items filtered by project - 3-tab navigation in base.html: Items, Projects, Schemas Fuzzy search: - Add sahilm/fuzzy dependency for ranked text matching - New internal/api/search.go with SearchableItems fuzzy.Source - GET /api/items/search endpoint with field scope and type/project filters - Frontend routes to fuzzy endpoint when search input is non-empty Odoo ERP integration scaffold: - Migration 008: integrations and sync_log tables - internal/odoo/ package: types, client stubs, sync stubs - internal/db/integrations.go: IntegrationRepository - internal/config/config.go: OdooConfig struct - 6 API endpoints for config CRUD, sync log, test, push, pull - All sync operations return stub responses Documentation: - docs/REPOSITORY_STATUS.md: comprehensive repository state report with architecture overview, API surface, feature stubs, and potential issues analysis
31 lines
1.1 KiB
SQL
31 lines
1.1 KiB
SQL
-- Integration configuration and sync logging for ERP connections (Odoo, etc.)
|
|
|
|
CREATE TABLE IF NOT EXISTS integrations (
|
|
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
name TEXT UNIQUE NOT NULL,
|
|
enabled BOOLEAN NOT NULL DEFAULT false,
|
|
config JSONB NOT NULL DEFAULT '{}',
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS sync_log (
|
|
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
|
integration_id UUID NOT NULL REFERENCES integrations(id) ON DELETE CASCADE,
|
|
item_id UUID REFERENCES items(id) ON DELETE SET NULL,
|
|
direction TEXT NOT NULL,
|
|
status TEXT NOT NULL DEFAULT 'pending',
|
|
external_id TEXT,
|
|
external_model TEXT,
|
|
request_payload JSONB,
|
|
response_payload JSONB,
|
|
error_message TEXT,
|
|
started_at TIMESTAMPTZ,
|
|
completed_at TIMESTAMPTZ,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_sync_log_integration ON sync_log(integration_id);
|
|
CREATE INDEX IF NOT EXISTS idx_sync_log_item ON sync_log(item_id);
|
|
CREATE INDEX IF NOT EXISTS idx_sync_log_status ON sync_log(status);
|