- Created a new SQL migration for the sag_salgsvarer table to manage sales and purchase items. - Implemented a new HTML template for the Varekøb & Salg module, including summary cards and tables for sales and purchases. - Added JavaScript functions for loading and rendering order data dynamically. - Introduced a new backend search module for customers, contacts, hardware, and locations with autocomplete functionality. - Developed an email templates API for managing system and customer-specific email templates. - Created multiple migrations for Nextcloud instances, cache, audit logs, email templates, sag comments, hardware locations, and billing methods. - Enhanced the sag module with solutions, order lines, work types, and 2FA support for user authentication.
28 lines
850 B
PL/PgSQL
28 lines
850 B
PL/PgSQL
-- Migration: 083_sag_hardware_locations
|
|
-- Created: 2026-02-01
|
|
-- Description: Enable linking Hardware and Locations to Cases
|
|
|
|
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS sag_hardware (
|
|
id SERIAL PRIMARY KEY,
|
|
sag_id INTEGER NOT NULL REFERENCES sag_sager(id) ON DELETE CASCADE,
|
|
hardware_id INTEGER NOT NULL REFERENCES hardware_assets(id) ON DELETE CASCADE,
|
|
note TEXT,
|
|
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
|
deleted_at TIMESTAMP,
|
|
UNIQUE(sag_id, hardware_id)
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS sag_lokationer (
|
|
id SERIAL PRIMARY KEY,
|
|
sag_id INTEGER NOT NULL REFERENCES sag_sager(id) ON DELETE CASCADE,
|
|
location_id INTEGER NOT NULL REFERENCES locations_locations(id) ON DELETE CASCADE,
|
|
note TEXT,
|
|
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
|
deleted_at TIMESTAMP,
|
|
UNIQUE(sag_id, location_id)
|
|
);
|
|
|
|
COMMIT;
|