Initial commit of the Asset Management System, including project structure, Docker configuration, database migrations, and core application files. Added user authentication, asset management features, and basic UI components.

This commit is contained in:
2025-08-22 21:41:02 +02:00
parent b43a98f0ec
commit 677f70a19c
52 changed files with 5186 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
INSERT INTO departments (name, cost_center, manager, manager_email) VALUES
('Geschäftsführung', 'GF-001', 'Dr. Michael Bauer', 'michael.bauer@example.com'),
('IT & Systemadministration', 'IT-001', 'Sarah Klein', 'sarah.klein@example.com'),
('Buchhaltung & Finanzen', 'BU-001', 'Frank Meyer', 'frank.meyer@example.com'),
('Personal & Verwaltung', 'PE-001', 'Claudia Schulz', 'claudia.schulz@example.com'),
('Vertrieb & Marketing', 'VM-001', 'Andreas Wolf', 'andreas.wolf@example.com'),
('Produktion & Fertigung', 'PR-001', 'Robert Koch', 'robert.koch@example.com'),
('Einkauf & Logistik', 'EL-001', 'Petra Lange', 'petra.lange@example.com'),
('Forschung & Entwicklung', 'FE-001', 'Dr. Thomas Richter', 'thomas.richter@example.com'),
('Kundenservice', 'KS-001', 'Nina Becker', 'nina.becker@example.com'),
('Qualitätssicherung', 'QS-001', 'Markus Hoffmann', 'markus.hoffmann@example.com');