Compare commits
4 Commits
84f63c37ce
...
ui-fix
| Author | SHA1 | Date | |
|---|---|---|---|
| c13a991778 | |||
| cb815177a1 | |||
| 7335d17900 | |||
| b358f5d7b7 |
844
scripts/create-comprehensive-test-data.js
Normal file
844
scripts/create-comprehensive-test-data.js
Normal file
@@ -0,0 +1,844 @@
|
||||
#!/usr/bin/env node
|
||||
/**
|
||||
* Comprehensive Test Data Generator
|
||||
*
|
||||
* Creates realistic test data for the panel application including:
|
||||
* - Users with different roles
|
||||
* - Contracts with realistic data
|
||||
* - Projects scattered across Poland with person/company names
|
||||
* - Task templates and sets
|
||||
* - Project tasks with various statuses
|
||||
* - Contacts
|
||||
* - Notes and file attachments
|
||||
* - Notifications and audit logs
|
||||
*/
|
||||
|
||||
import db from '../src/lib/db.js';
|
||||
import initializeDatabase from '../src/lib/init-db.js';
|
||||
import bcrypt from 'bcryptjs';
|
||||
import crypto from 'crypto';
|
||||
|
||||
// Configuration
|
||||
const CONFIG = {
|
||||
clearExistingData: true,
|
||||
preserveAdmin: true, // Keep existing admin user
|
||||
seed: 42, // For reproducible random data
|
||||
};
|
||||
|
||||
// Seeded random number generator
|
||||
class SeededRandom {
|
||||
constructor(seed) {
|
||||
this.seed = seed;
|
||||
}
|
||||
|
||||
next() {
|
||||
this.seed = (this.seed * 9301 + 49297) % 233280;
|
||||
return this.seed / 233280;
|
||||
}
|
||||
|
||||
choice(array) {
|
||||
return array[Math.floor(this.next() * array.length)];
|
||||
}
|
||||
|
||||
integer(min, max) {
|
||||
return Math.floor(this.next() * (max - min + 1)) + min;
|
||||
}
|
||||
|
||||
boolean(probability = 0.5) {
|
||||
return this.next() < probability;
|
||||
}
|
||||
}
|
||||
|
||||
const random = new SeededRandom(CONFIG.seed);
|
||||
|
||||
// Polish cities with coordinates
|
||||
const POLISH_CITIES = [
|
||||
{ name: 'Warszawa', coordinates: '52.2297,21.0122' },
|
||||
{ name: 'Kraków', coordinates: '50.0647,19.9450' },
|
||||
{ name: 'Wrocław', coordinates: '51.1079,17.0385' },
|
||||
{ name: 'Poznań', coordinates: '52.4064,16.9252' },
|
||||
{ name: 'Gdańsk', coordinates: '54.3520,18.6466' },
|
||||
{ name: 'Szczecin', coordinates: '53.4289,14.5530' },
|
||||
{ name: 'Lublin', coordinates: '51.2465,22.5684' },
|
||||
{ name: 'Katowice', coordinates: '50.2649,19.0238' },
|
||||
{ name: 'Łódź', coordinates: '51.7592,19.4600' },
|
||||
{ name: 'Bydgoszcz', coordinates: '53.1235,18.0084' },
|
||||
{ name: 'Białystok', coordinates: '53.1325,23.1688' },
|
||||
{ name: 'Rzeszów', coordinates: '50.0412,21.9991' },
|
||||
];
|
||||
|
||||
// Street names
|
||||
const STREET_TYPES = ['ul.', 'al.', 'pl.'];
|
||||
const STREET_NAMES = [
|
||||
'Główna', 'Kwiatowa', 'Słoneczna', 'Przemysłowa', 'Leśna',
|
||||
'Parkowa', 'Centralna', 'Sportowa', 'Polna', 'Krótka',
|
||||
'Długa', 'Nowa', 'Stara', 'Morska', 'Górska', 'Wolności',
|
||||
'Mickiewicza', 'Kościuszki', 'Piłsudskiego', 'Kolejowa'
|
||||
];
|
||||
|
||||
// Project names - people
|
||||
const PERSON_NAMES = [
|
||||
'Jan Kowalski', 'Anna Nowak', 'Piotr Wiśniewski', 'Maria Lewandowska',
|
||||
'Tomasz Kamiński', 'Małgorzata Zielińska', 'Krzysztof Szymański',
|
||||
'Agnieszka Woźniak', 'Andrzej Dąbrowski', 'Barbara Kozłowska',
|
||||
'Józef Jankowski', 'Ewa Wojciechowska', 'Stanisław Kwiatkowski',
|
||||
'Krystyna Kaczmarek', 'Tadeusz Piotrowski'
|
||||
];
|
||||
|
||||
// Project names - companies
|
||||
const COMPANY_NAMES = [
|
||||
'PolBud Sp. z o.o.', 'Constructo Group', 'BuildMaster SA',
|
||||
'EuroDevelopment', 'Invest Property', 'Metropolitan Construction',
|
||||
'Green Building Solutions', 'Nova Inwestycje', 'Prime Estate',
|
||||
'TechBuild Industries', 'Horizon Development', 'Skyline Properties',
|
||||
'Urban Solutions', 'Future Living', 'Capital Investments'
|
||||
];
|
||||
|
||||
// Task templates
|
||||
const DESIGN_TASKS = [
|
||||
{ name: 'Wstępne uzgodnienia z klientem', max_wait_days: 7 },
|
||||
{ name: 'Wizja lokalna i pomiary', max_wait_days: 5 },
|
||||
{ name: 'Projekt koncepcyjny', max_wait_days: 14 },
|
||||
{ name: 'Uzgodnienia projektu koncepcyjnego', max_wait_days: 7 },
|
||||
{ name: 'Projekt budowlany', max_wait_days: 21 },
|
||||
{ name: 'Projekt wykonawczy', max_wait_days: 21 },
|
||||
{ name: 'Specyfikacja techniczna', max_wait_days: 10 },
|
||||
{ name: 'Kosztorys inwestorski', max_wait_days: 7 },
|
||||
{ name: 'Wniosek o pozwolenie na budowę', max_wait_days: 14 },
|
||||
{ name: 'Uzyskanie pozwolenia na budowę', max_wait_days: 60 },
|
||||
{ name: 'Projekt wykonawczy - instalacje', max_wait_days: 21 },
|
||||
{ name: 'Projekt zagospodarowania terenu', max_wait_days: 14 },
|
||||
{ name: 'Dokumentacja powykonawcza', max_wait_days: 14 },
|
||||
];
|
||||
|
||||
const CONSTRUCTION_TASKS = [
|
||||
{ name: 'Przygotowanie placu budowy', max_wait_days: 7 },
|
||||
{ name: 'Wykopy i fundamenty', max_wait_days: 14 },
|
||||
{ name: 'Stan zero', max_wait_days: 21 },
|
||||
{ name: 'Stan surowy otwarty', max_wait_days: 30 },
|
||||
{ name: 'Stan surowy zamknięty', max_wait_days: 30 },
|
||||
{ name: 'Instalacje wewnętrzne', max_wait_days: 21 },
|
||||
{ name: 'Tynki i wylewki', max_wait_days: 14 },
|
||||
{ name: 'Stolarka okienna i drzwiowa', max_wait_days: 10 },
|
||||
{ name: 'Wykończenie - malowanie', max_wait_days: 14 },
|
||||
{ name: 'Wykończenie - podłogi', max_wait_days: 10 },
|
||||
{ name: 'Instalacje sanitarne', max_wait_days: 14 },
|
||||
{ name: 'Instalacje elektryczne', max_wait_days: 14 },
|
||||
{ name: 'Odbiór techniczny', max_wait_days: 7 },
|
||||
{ name: 'Odbiór końcowy', max_wait_days: 7 },
|
||||
{ name: 'Przekazanie dokumentacji', max_wait_days: 5 },
|
||||
];
|
||||
|
||||
// Contact types and data
|
||||
const CONTACT_FIRST_NAMES = ['Jan', 'Piotr', 'Anna', 'Maria', 'Tomasz', 'Krzysztof', 'Agnieszka', 'Magdalena', 'Andrzej', 'Ewa'];
|
||||
const CONTACT_LAST_NAMES = ['Kowalski', 'Nowak', 'Wiśniewski', 'Lewandowski', 'Kamiński', 'Zieliński', 'Szymański', 'Woźniak', 'Dąbrowski', 'Kozłowski'];
|
||||
const POSITIONS = ['Kierownik projektu', 'Inżynier', 'Architekt', 'Inspektor nadzoru', 'Przedstawiciel inwestora', 'Dyrektor', 'Koordynator'];
|
||||
|
||||
// Helper functions
|
||||
function generateId() {
|
||||
return crypto.randomBytes(16).toString('hex');
|
||||
}
|
||||
|
||||
function generateWP() {
|
||||
const part1 = String(random.integer(100000, 999999));
|
||||
const part2 = String(random.integer(1000, 9999));
|
||||
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
||||
const part3 = Array(6).fill(0).map(() => chars[random.integer(0, chars.length - 1)]).join('');
|
||||
return `${part1}/${part2}/${part3}`;
|
||||
}
|
||||
|
||||
function generateInvestmentNumber() {
|
||||
const letter = String.fromCharCode(65 + random.integer(0, 25)); // A-Z
|
||||
const letters = String.fromCharCode(65 + random.integer(0, 25)) + String.fromCharCode(65 + random.integer(0, 25));
|
||||
const number = String(random.integer(1000000, 9999999));
|
||||
return `${letter}-${letters}-${number}`;
|
||||
}
|
||||
|
||||
function generateDate(startDate, endDate) {
|
||||
const start = new Date(startDate).getTime();
|
||||
const end = new Date(endDate).getTime();
|
||||
const timestamp = start + random.next() * (end - start);
|
||||
return new Date(timestamp).toISOString().split('T')[0];
|
||||
}
|
||||
|
||||
function addDays(dateStr, days) {
|
||||
const date = new Date(dateStr);
|
||||
date.setDate(date.getDate() + days);
|
||||
return date.toISOString().split('T')[0];
|
||||
}
|
||||
|
||||
function generatePhoneNumber() {
|
||||
return `${random.integer(500, 799)}-${random.integer(100, 999)}-${random.integer(100, 999)}`;
|
||||
}
|
||||
|
||||
// Clear existing data
|
||||
function clearData() {
|
||||
console.log('\n🗑️ Clearing existing data...\n');
|
||||
|
||||
const tables = [
|
||||
'field_change_history',
|
||||
'notifications',
|
||||
'audit_logs',
|
||||
'file_attachments',
|
||||
'notes',
|
||||
'project_tasks',
|
||||
'task_set_templates',
|
||||
'task_sets',
|
||||
'tasks',
|
||||
'project_contacts',
|
||||
'contacts',
|
||||
'projects',
|
||||
'contracts',
|
||||
'password_reset_tokens',
|
||||
'sessions',
|
||||
];
|
||||
|
||||
if (!CONFIG.preserveAdmin) {
|
||||
tables.push('users');
|
||||
}
|
||||
|
||||
tables.forEach(table => {
|
||||
try {
|
||||
db.prepare(`DELETE FROM ${table}`).run();
|
||||
console.log(` ✓ Cleared ${table}`);
|
||||
} catch (error) {
|
||||
console.log(` ⚠ Warning clearing ${table}:`, error.message);
|
||||
}
|
||||
});
|
||||
|
||||
// Reset sequences
|
||||
db.prepare('DELETE FROM sqlite_sequence').run();
|
||||
|
||||
console.log('\n✅ Data cleared successfully\n');
|
||||
}
|
||||
|
||||
// Phase 1: Create Users
|
||||
function createUsers() {
|
||||
console.log('\n👥 Creating users...\n');
|
||||
|
||||
const users = [];
|
||||
const defaultPassword = bcrypt.hashSync('password123', 10);
|
||||
|
||||
// Keep existing admin if preserveAdmin is true
|
||||
if (CONFIG.preserveAdmin) {
|
||||
const existingAdmin = db.prepare('SELECT * FROM users WHERE role = ?').get('admin');
|
||||
if (existingAdmin) {
|
||||
users.push(existingAdmin);
|
||||
console.log(` ✓ Preserved existing admin: ${existingAdmin.username}`);
|
||||
}
|
||||
}
|
||||
|
||||
const newUsers = [
|
||||
{ name: 'Maria Kowalska', username: 'maria.kowalska', role: 'team_lead' },
|
||||
{ name: 'Piotr Nowak', username: 'piotr.nowak', role: 'team_lead' },
|
||||
{ name: 'Anna Wiśniewska', username: 'anna.wisniewska', role: 'project_manager' },
|
||||
{ name: 'Tomasz Kamiński', username: 'tomasz.kaminski', role: 'project_manager' },
|
||||
{ name: 'Krzysztof Lewandowski', username: 'krzysztof.lewandowski', role: 'project_manager' },
|
||||
{ name: 'Agnieszka Zielińska', username: 'agnieszka.zielinska', role: 'user' },
|
||||
{ name: 'Marek Szymański', username: 'marek.szymanski', role: 'user' },
|
||||
{ name: 'Ewa Dąbrowska', username: 'ewa.dabrowska', role: 'user' },
|
||||
{ name: 'Janusz Kozłowski', username: 'janusz.kozlowski', role: 'user' },
|
||||
{ name: 'Barbara Wojciechowska', username: 'barbara.wojciechowska', role: 'user' },
|
||||
{ name: 'Viewing Account', username: 'viewer', role: 'read_only' },
|
||||
];
|
||||
|
||||
newUsers.forEach(userData => {
|
||||
const userId = generateId();
|
||||
|
||||
// Generate initials from name
|
||||
const nameParts = userData.name.trim().split(/\s+/);
|
||||
const initial = nameParts.map(part => part.charAt(0).toUpperCase()).join('');
|
||||
|
||||
db.prepare(`
|
||||
INSERT INTO users (id, name, username, password_hash, role, initial, is_active, created_at, updated_at)
|
||||
VALUES (?, ?, ?, ?, ?, ?, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
|
||||
`).run(userId, userData.name, userData.username, defaultPassword, userData.role, initial);
|
||||
|
||||
users.push({ id: userId, ...userData });
|
||||
console.log(` ✓ Created ${userData.role}: ${userData.name} (${userData.username})`);
|
||||
});
|
||||
|
||||
console.log(`\n✅ Created ${newUsers.length} new users (Total: ${users.length})\n`);
|
||||
return users;
|
||||
}
|
||||
|
||||
// Phase 2: Create Contracts
|
||||
function createContracts() {
|
||||
console.log('\n📄 Creating contracts...\n');
|
||||
|
||||
const contracts = [
|
||||
{
|
||||
number: '2025/FW-001',
|
||||
name: 'Umowa ramowa - projekty mieszkaniowe 2025',
|
||||
customer: 'Deweloper Mieszkaniowy Sp. z o.o.',
|
||||
investor: 'Invest Property Fund',
|
||||
customerContractNumber: 'DMH/2025/001',
|
||||
dateSigned: '2025-01-10',
|
||||
finishDate: '2026-12-31',
|
||||
},
|
||||
{
|
||||
number: '2025/INF-002',
|
||||
name: 'Projekty infrastrukturalne miasta',
|
||||
customer: 'Zarząd Dróg Miejskich',
|
||||
investor: 'Gmina Miasto',
|
||||
customerContractNumber: 'ZDM-2025-02-INF',
|
||||
dateSigned: '2025-02-01',
|
||||
finishDate: '2026-06-30',
|
||||
},
|
||||
{
|
||||
number: '2025/COM-003',
|
||||
name: 'Obiekty komercyjne - centra handlowe',
|
||||
customer: 'Retail Development Group',
|
||||
investor: 'Metropolitan Investments',
|
||||
customerContractNumber: 'RDG/25/COM/03',
|
||||
dateSigned: '2025-01-15',
|
||||
finishDate: '2026-09-30',
|
||||
},
|
||||
];
|
||||
|
||||
const contractIds = [];
|
||||
|
||||
contracts.forEach((contract, index) => {
|
||||
const result = db.prepare(`
|
||||
INSERT INTO contracts (
|
||||
contract_number, contract_name, customer_contract_number,
|
||||
customer, investor, date_signed, finish_date
|
||||
) VALUES (?, ?, ?, ?, ?, ?, ?)
|
||||
`).run(
|
||||
contract.number,
|
||||
contract.name,
|
||||
contract.customerContractNumber,
|
||||
contract.customer,
|
||||
contract.investor,
|
||||
contract.dateSigned,
|
||||
contract.finishDate
|
||||
);
|
||||
|
||||
contractIds.push(result.lastInsertRowid);
|
||||
console.log(` ✓ Created contract: ${contract.number} - ${contract.name}`);
|
||||
});
|
||||
|
||||
console.log(`\n✅ Created ${contracts.length} contracts\n`);
|
||||
return contractIds;
|
||||
}
|
||||
|
||||
// Phase 3: Create Projects
|
||||
function createProjects(contractIds, users) {
|
||||
console.log('\n🏗️ Creating projects...\n');
|
||||
|
||||
const projectCount = random.integer(12, 15);
|
||||
const projects = [];
|
||||
const projectStatuses = ['registered', 'in_progress_design', 'in_progress_construction', 'fulfilled', 'cancelled'];
|
||||
const projectTypes = ['design', 'construction', 'design+construction'];
|
||||
|
||||
const usedCities = [];
|
||||
|
||||
for (let i = 0; i < projectCount; i++) {
|
||||
// Select contract
|
||||
const contractId = random.choice(contractIds);
|
||||
const contractInfo = db.prepare('SELECT contract_number FROM contracts WHERE contract_id = ?').get(contractId);
|
||||
|
||||
// Get sequential number for this contract
|
||||
const existingCount = db.prepare('SELECT COUNT(*) as count FROM projects WHERE contract_id = ?').get(contractId);
|
||||
const sequenceNumber = existingCount.count + 1;
|
||||
const projectNumber = `${sequenceNumber}/${contractInfo.contract_number}`;
|
||||
|
||||
// Select city (try to use different cities)
|
||||
let city;
|
||||
if (usedCities.length < POLISH_CITIES.length) {
|
||||
const availableCities = POLISH_CITIES.filter(c => !usedCities.includes(c.name));
|
||||
city = random.choice(availableCities);
|
||||
usedCities.push(city.name);
|
||||
} else {
|
||||
city = random.choice(POLISH_CITIES);
|
||||
}
|
||||
|
||||
// Generate address
|
||||
const streetType = random.choice(STREET_TYPES);
|
||||
const streetName = random.choice(STREET_NAMES);
|
||||
const buildingNumber = random.integer(1, 200);
|
||||
const address = `${streetType} ${streetName} ${buildingNumber}`;
|
||||
|
||||
// Project name (person or company)
|
||||
const projectName = random.boolean(0.6) ? random.choice(PERSON_NAMES) : random.choice(COMPANY_NAMES);
|
||||
|
||||
// Project type and status
|
||||
const projectType = random.choice(projectTypes);
|
||||
const projectStatus = random.choice(projectStatuses);
|
||||
|
||||
// Dates
|
||||
const startDate = generateDate('2025-01-01', '2025-12-31');
|
||||
const finishDate = addDays(startDate, random.integer(90, 365));
|
||||
const completionDate = (projectStatus === 'fulfilled') ? addDays(finishDate, random.integer(-30, 10)) : null;
|
||||
|
||||
// Other fields
|
||||
const wp = generateWP();
|
||||
const investmentNumber = generateInvestmentNumber();
|
||||
const plot = `${random.integer(1, 500)}/${random.integer(1, 50)}`;
|
||||
const district = random.choice(['Centrum', 'Północ', 'Południe', 'Wschód', 'Zachód', 'Śródmieście']);
|
||||
const unit = random.choice(['A', 'B', 'C', 'D', 'E', '1', '2', '3']);
|
||||
|
||||
// Assign to project manager
|
||||
const projectManagers = users.filter(u => u.role === 'project_manager');
|
||||
const assignedTo = random.choice(projectManagers).id;
|
||||
const createdBy = random.choice(users.filter(u => u.role === 'admin' || u.role === 'team_lead')).id;
|
||||
|
||||
const wartoscZlecenia = random.integer(100000, 5000000);
|
||||
|
||||
const result = db.prepare(`
|
||||
INSERT INTO projects (
|
||||
contract_id, project_name, project_number, address, plot, district, unit, city,
|
||||
investment_number, start_date, finish_date, completion_date, wp,
|
||||
coordinates, project_type, project_status, wartosc_zlecenia,
|
||||
created_by, assigned_to, created_at, updated_at
|
||||
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
|
||||
`).run(
|
||||
contractId, projectName, projectNumber, address, plot, district, unit, city.name,
|
||||
investmentNumber, startDate, finishDate, completionDate, wp,
|
||||
city.coordinates, projectType, projectStatus, wartoscZlecenia,
|
||||
createdBy, assignedTo
|
||||
);
|
||||
|
||||
projects.push({
|
||||
id: result.lastInsertRowid,
|
||||
name: projectName,
|
||||
number: projectNumber,
|
||||
type: projectType,
|
||||
status: projectStatus,
|
||||
city: city.name,
|
||||
assignedTo: assignedTo,
|
||||
createdBy: createdBy,
|
||||
startDate: startDate,
|
||||
});
|
||||
|
||||
console.log(` ✓ ${projectNumber}: ${projectName} (${city.name}) - ${projectStatus}`);
|
||||
}
|
||||
|
||||
console.log(`\n✅ Created ${projects.length} projects\n`);
|
||||
return projects;
|
||||
}
|
||||
|
||||
// Phase 4: Create Task Templates
|
||||
function createTaskTemplates() {
|
||||
console.log('\n✅ Creating task templates...\n');
|
||||
|
||||
const taskIds = { design: [], construction: [] };
|
||||
|
||||
console.log(' Design tasks:');
|
||||
DESIGN_TASKS.forEach(task => {
|
||||
const result = db.prepare(`
|
||||
INSERT INTO tasks (name, max_wait_days, is_standard, task_category)
|
||||
VALUES (?, ?, 1, 'design')
|
||||
`).run(task.name, task.max_wait_days);
|
||||
taskIds.design.push(result.lastInsertRowid);
|
||||
console.log(` ✓ ${task.name}`);
|
||||
});
|
||||
|
||||
console.log('\n Construction tasks:');
|
||||
CONSTRUCTION_TASKS.forEach(task => {
|
||||
const result = db.prepare(`
|
||||
INSERT INTO tasks (name, max_wait_days, is_standard, task_category)
|
||||
VALUES (?, ?, 1, 'construction')
|
||||
`).run(task.name, task.max_wait_days);
|
||||
taskIds.construction.push(result.lastInsertRowid);
|
||||
console.log(` ✓ ${task.name}`);
|
||||
});
|
||||
|
||||
console.log(`\n✅ Created ${DESIGN_TASKS.length + CONSTRUCTION_TASKS.length} task templates\n`);
|
||||
return taskIds;
|
||||
}
|
||||
|
||||
// Phase 5: Create Task Sets
|
||||
function createTaskSets(taskIds) {
|
||||
console.log('\n📋 Creating task sets...\n');
|
||||
|
||||
const sets = [
|
||||
{
|
||||
name: 'Standard - Projektowanie',
|
||||
category: 'design',
|
||||
tasks: taskIds.design.slice(0, 8),
|
||||
},
|
||||
{
|
||||
name: 'Pełny zakres - Projektowanie',
|
||||
category: 'design',
|
||||
tasks: taskIds.design,
|
||||
},
|
||||
{
|
||||
name: 'Standard - Budowa',
|
||||
category: 'construction',
|
||||
tasks: taskIds.construction.slice(0, 10),
|
||||
},
|
||||
{
|
||||
name: 'Pełny zakres - Budowa',
|
||||
category: 'construction',
|
||||
tasks: taskIds.construction,
|
||||
},
|
||||
];
|
||||
|
||||
const setIds = [];
|
||||
|
||||
sets.forEach(set => {
|
||||
const result = db.prepare(`
|
||||
INSERT INTO task_sets (name, task_category, created_at, updated_at)
|
||||
VALUES (?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
|
||||
`).run(set.name, set.category);
|
||||
|
||||
const setId = result.lastInsertRowid;
|
||||
setIds.push(setId);
|
||||
|
||||
// Add tasks to set
|
||||
set.tasks.forEach((taskId, index) => {
|
||||
db.prepare(`
|
||||
INSERT INTO task_set_templates (set_id, task_template_id, sort_order)
|
||||
VALUES (?, ?, ?)
|
||||
`).run(setId, taskId, index);
|
||||
});
|
||||
|
||||
console.log(` ✓ ${set.name} (${set.tasks.length} tasks)`);
|
||||
});
|
||||
|
||||
console.log(`\n✅ Created ${sets.length} task sets\n`);
|
||||
return setIds;
|
||||
}
|
||||
|
||||
// Phase 6: Create Project Tasks
|
||||
function createProjectTasks(projects, taskIds, users) {
|
||||
console.log('\n📝 Creating project tasks...\n');
|
||||
|
||||
const taskStatuses = ['not_started', 'in_progress', 'completed', 'cancelled'];
|
||||
const priorities = ['normal', 'low', 'high'];
|
||||
let totalTasks = 0;
|
||||
|
||||
projects.forEach(project => {
|
||||
// Select appropriate tasks based on project type
|
||||
let availableTasks = [];
|
||||
if (project.type === 'design') {
|
||||
availableTasks = taskIds.design;
|
||||
} else if (project.type === 'construction') {
|
||||
availableTasks = taskIds.construction;
|
||||
} else {
|
||||
availableTasks = [...taskIds.design, ...taskIds.construction];
|
||||
}
|
||||
|
||||
// Create 3-7 tasks per project
|
||||
const taskCount = random.integer(3, 7);
|
||||
const selectedTasks = [];
|
||||
|
||||
// Select random tasks
|
||||
for (let i = 0; i < taskCount && selectedTasks.length < availableTasks.length; i++) {
|
||||
let taskId;
|
||||
do {
|
||||
taskId = random.choice(availableTasks);
|
||||
} while (selectedTasks.includes(taskId));
|
||||
selectedTasks.push(taskId);
|
||||
}
|
||||
|
||||
selectedTasks.forEach(taskTemplateId => {
|
||||
// Determine status based on project status
|
||||
let status;
|
||||
if (project.status === 'registered') {
|
||||
status = 'not_started';
|
||||
} else if (project.status === 'fulfilled') {
|
||||
status = 'completed';
|
||||
} else if (project.status === 'cancelled') {
|
||||
status = random.choice(['not_started', 'cancelled']);
|
||||
} else {
|
||||
status = random.choice(taskStatuses.slice(0, 3)); // not_started, in_progress, completed
|
||||
}
|
||||
|
||||
const priority = random.choice(priorities);
|
||||
|
||||
// Dates
|
||||
let dateAdded = project.startDate;
|
||||
let dateStarted = null;
|
||||
let dateCompleted = null;
|
||||
|
||||
if (status === 'in_progress' || status === 'completed') {
|
||||
dateStarted = addDays(dateAdded, random.integer(1, 30));
|
||||
}
|
||||
if (status === 'completed') {
|
||||
dateCompleted = addDays(dateStarted, random.integer(5, 60));
|
||||
}
|
||||
|
||||
// Assignment
|
||||
const regularUsers = users.filter(u => u.role === 'user' || u.role === 'project_manager');
|
||||
const assignedTo = random.boolean(0.7) ? random.choice(regularUsers).id : null;
|
||||
|
||||
db.prepare(`
|
||||
INSERT INTO project_tasks (
|
||||
project_id, task_template_id, status, priority,
|
||||
date_added, date_started, date_completed,
|
||||
created_by, assigned_to, created_at, updated_at
|
||||
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
|
||||
`).run(
|
||||
project.id, taskTemplateId, status, priority,
|
||||
dateAdded, dateStarted, dateCompleted,
|
||||
project.createdBy, assignedTo
|
||||
);
|
||||
|
||||
totalTasks++;
|
||||
});
|
||||
|
||||
console.log(` ✓ ${project.number}: Created ${taskCount} tasks`);
|
||||
});
|
||||
|
||||
console.log(`\n✅ Created ${totalTasks} project tasks\n`);
|
||||
}
|
||||
|
||||
// Phase 7: Create Contacts
|
||||
function createContacts(users) {
|
||||
console.log('\n👤 Creating contacts...\n');
|
||||
|
||||
const contactTypes = ['project', 'contractor', 'office', 'supplier', 'other'];
|
||||
const contacts = [];
|
||||
const contactCount = random.integer(25, 35);
|
||||
|
||||
for (let i = 0; i < contactCount; i++) {
|
||||
const firstName = random.choice(CONTACT_FIRST_NAMES);
|
||||
const lastName = random.choice(CONTACT_LAST_NAMES);
|
||||
const name = `${firstName} ${lastName}`;
|
||||
const phone = generatePhoneNumber();
|
||||
const email = random.boolean(0.6) ? `${firstName.toLowerCase()}.${lastName.toLowerCase()}@example.com` : null;
|
||||
const company = random.boolean(0.5) ? random.choice(COMPANY_NAMES) : null;
|
||||
const position = random.boolean(0.7) ? random.choice(POSITIONS) : null;
|
||||
const contactType = random.choice(contactTypes);
|
||||
|
||||
const result = db.prepare(`
|
||||
INSERT INTO contacts (
|
||||
name, phone, email, company, position, contact_type, is_active,
|
||||
created_at, updated_at
|
||||
) VALUES (?, ?, ?, ?, ?, ?, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)
|
||||
`).run(name, phone, email, company, position, contactType);
|
||||
|
||||
contacts.push({
|
||||
id: result.lastInsertRowid,
|
||||
name: name,
|
||||
type: contactType,
|
||||
});
|
||||
}
|
||||
|
||||
console.log(` ✓ Created ${contacts.length} contacts\n`);
|
||||
return contacts;
|
||||
}
|
||||
|
||||
// Phase 8: Link Projects to Contacts
|
||||
function linkProjectContacts(projects, contacts, users) {
|
||||
console.log('\n🔗 Linking projects to contacts...\n');
|
||||
|
||||
let linkCount = 0;
|
||||
|
||||
projects.forEach(project => {
|
||||
// Link 1-4 contacts per project
|
||||
const contactsToLink = random.integer(1, 4);
|
||||
const linkedContacts = [];
|
||||
|
||||
for (let i = 0; i < contactsToLink; i++) {
|
||||
let contact;
|
||||
do {
|
||||
contact = random.choice(contacts);
|
||||
} while (linkedContacts.includes(contact.id));
|
||||
|
||||
linkedContacts.push(contact.id);
|
||||
|
||||
const isPrimary = i === 0 ? 1 : 0;
|
||||
const relationshipType = random.choice(['general', 'technical', 'commercial', 'administrative']);
|
||||
const addedBy = random.choice(users).id;
|
||||
|
||||
try {
|
||||
db.prepare(`
|
||||
INSERT INTO project_contacts (
|
||||
project_id, contact_id, relationship_type, is_primary, added_by, added_at
|
||||
) VALUES (?, ?, ?, ?, ?, CURRENT_TIMESTAMP)
|
||||
`).run(project.id, contact.id, relationshipType, isPrimary, addedBy);
|
||||
|
||||
linkCount++;
|
||||
} catch (error) {
|
||||
// Ignore duplicate key errors
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
console.log(` ✓ Created ${linkCount} project-contact links\n`);
|
||||
}
|
||||
|
||||
// Phase 9: Create Notes
|
||||
function createNotes(projects, users) {
|
||||
console.log('\n📝 Creating notes...\n');
|
||||
|
||||
const noteTemplates = [
|
||||
'Spotkanie z klientem - uzgodniono zakres prac',
|
||||
'Wykonano wizję lokalną',
|
||||
'Przesłano dokumentację do uzgodnień',
|
||||
'Otrzymano uwagi do projektu',
|
||||
'Zaktualizowano dokumentację zgodnie z uwagami',
|
||||
'Projekt zatwierdzony przez inwestora',
|
||||
'Rozpoczęto prace na budowie',
|
||||
'Wykonano odbiór częściowy',
|
||||
'Zgłoszono problemy techniczne',
|
||||
'Problem rozwiązany',
|
||||
'Zamówiono materiały',
|
||||
'Dostawa materiałów opóźniona',
|
||||
'Materiały dostarczone na plac budowy',
|
||||
];
|
||||
|
||||
let noteCount = 0;
|
||||
|
||||
projects.forEach(project => {
|
||||
// Create 2-6 notes per project
|
||||
const notesPerProject = random.integer(2, 6);
|
||||
|
||||
for (let i = 0; i < notesPerProject; i++) {
|
||||
const note = random.choice(noteTemplates);
|
||||
const createdBy = random.choice(users).id;
|
||||
const isSystem = random.boolean(0.1) ? 1 : 0;
|
||||
|
||||
// Generate date between project start and now
|
||||
const noteDate = generateDate(project.startDate, '2026-01-26');
|
||||
|
||||
db.prepare(`
|
||||
INSERT INTO notes (
|
||||
project_id, note, note_date, is_system, created_by
|
||||
) VALUES (?, ?, ?, ?, ?)
|
||||
`).run(project.id, note, noteDate, isSystem, createdBy);
|
||||
|
||||
noteCount++;
|
||||
}
|
||||
});
|
||||
|
||||
console.log(` ✓ Created ${noteCount} notes\n`);
|
||||
}
|
||||
|
||||
// Phase 10: Create Audit Logs
|
||||
function createAuditLogs(users, projects) {
|
||||
console.log('\n📊 Creating audit logs...\n');
|
||||
|
||||
const actions = [
|
||||
'user.login',
|
||||
'project.create',
|
||||
'project.update',
|
||||
'project.view',
|
||||
'task.create',
|
||||
'task.update',
|
||||
'task.complete',
|
||||
'file.upload',
|
||||
'contract.create',
|
||||
'contact.create',
|
||||
];
|
||||
|
||||
const ipAddresses = [
|
||||
'192.168.1.100',
|
||||
'192.168.1.101',
|
||||
'10.0.0.50',
|
||||
'172.16.0.10',
|
||||
'83.24.156.78',
|
||||
];
|
||||
|
||||
let logCount = 0;
|
||||
|
||||
// Create 100-200 audit logs
|
||||
const totalLogs = random.integer(100, 200);
|
||||
|
||||
for (let i = 0; i < totalLogs; i++) {
|
||||
const user = random.choice(users);
|
||||
const action = random.choice(actions);
|
||||
const timestamp = generateDate('2025-01-01', '2026-01-26');
|
||||
const ip = random.choice(ipAddresses);
|
||||
|
||||
let resourceType = null;
|
||||
let resourceId = null;
|
||||
|
||||
if (action.includes('project')) {
|
||||
resourceType = 'project';
|
||||
resourceId = String(random.choice(projects).id);
|
||||
}
|
||||
|
||||
db.prepare(`
|
||||
INSERT INTO audit_logs (
|
||||
user_id, action, resource_type, resource_id, ip_address,
|
||||
user_agent, timestamp
|
||||
) VALUES (?, ?, ?, ?, ?, ?, ?)
|
||||
`).run(
|
||||
user.id,
|
||||
action,
|
||||
resourceType,
|
||||
resourceId,
|
||||
ip,
|
||||
'Mozilla/5.0 (compatible)',
|
||||
timestamp
|
||||
);
|
||||
|
||||
logCount++;
|
||||
}
|
||||
|
||||
console.log(` ✓ Created ${logCount} audit logs\n`);
|
||||
}
|
||||
|
||||
// Main execution
|
||||
async function main() {
|
||||
console.log('\n╔════════════════════════════════════════════════════════╗');
|
||||
console.log('║ Comprehensive Test Data Generator ║');
|
||||
console.log('╚════════════════════════════════════════════════════════╝');
|
||||
|
||||
try {
|
||||
// Initialize database
|
||||
console.log('\n🔧 Initializing database schema...');
|
||||
initializeDatabase();
|
||||
console.log('✅ Database schema ready\n');
|
||||
|
||||
// Clear existing data
|
||||
if (CONFIG.clearExistingData) {
|
||||
clearData();
|
||||
}
|
||||
|
||||
// Generate data in phases
|
||||
const users = createUsers();
|
||||
const contractIds = createContracts();
|
||||
const projects = createProjects(contractIds, users);
|
||||
const taskIds = createTaskTemplates();
|
||||
const taskSetIds = createTaskSets(taskIds);
|
||||
createProjectTasks(projects, taskIds, users);
|
||||
const contacts = createContacts(users);
|
||||
linkProjectContacts(projects, contacts, users);
|
||||
createNotes(projects, users);
|
||||
createAuditLogs(users, projects);
|
||||
|
||||
// Summary
|
||||
console.log('\n╔════════════════════════════════════════════════════════╗');
|
||||
console.log('║ SUMMARY ║');
|
||||
console.log('╚════════════════════════════════════════════════════════╝\n');
|
||||
|
||||
const stats = {
|
||||
users: db.prepare('SELECT COUNT(*) as count FROM users').get().count,
|
||||
contracts: db.prepare('SELECT COUNT(*) as count FROM contracts').get().count,
|
||||
projects: db.prepare('SELECT COUNT(*) as count FROM projects').get().count,
|
||||
tasks: db.prepare('SELECT COUNT(*) as count FROM tasks').get().count,
|
||||
taskSets: db.prepare('SELECT COUNT(*) as count FROM task_sets').get().count,
|
||||
projectTasks: db.prepare('SELECT COUNT(*) as count FROM project_tasks').get().count,
|
||||
contacts: db.prepare('SELECT COUNT(*) as count FROM contacts').get().count,
|
||||
projectContacts: db.prepare('SELECT COUNT(*) as count FROM project_contacts').get().count,
|
||||
notes: db.prepare('SELECT COUNT(*) as count FROM notes').get().count,
|
||||
auditLogs: db.prepare('SELECT COUNT(*) as count FROM audit_logs').get().count,
|
||||
};
|
||||
|
||||
console.log(` 👥 Users: ${stats.users}`);
|
||||
console.log(` 📄 Contracts: ${stats.contracts}`);
|
||||
console.log(` 🏗️ Projects: ${stats.projects}`);
|
||||
console.log(` ✅ Task Templates: ${stats.tasks}`);
|
||||
console.log(` 📋 Task Sets: ${stats.taskSets}`);
|
||||
console.log(` 📝 Project Tasks: ${stats.projectTasks}`);
|
||||
console.log(` 👤 Contacts: ${stats.contacts}`);
|
||||
console.log(` 🔗 Project-Contacts: ${stats.projectContacts}`);
|
||||
console.log(` 📝 Notes: ${stats.notes}`);
|
||||
console.log(` 📊 Audit Logs: ${stats.auditLogs}`);
|
||||
|
||||
console.log('\n✨ Test data generation completed successfully!\n');
|
||||
console.log('💡 Default password for all users: password123\n');
|
||||
|
||||
} catch (error) {
|
||||
console.error('\n❌ Error:', error.message);
|
||||
console.error(error.stack);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
main();
|
||||
@@ -1,6 +1,6 @@
|
||||
import db from "@/lib/db";
|
||||
import { NextResponse } from "next/server";
|
||||
import { withReadAuth, withUserAuth } from "@/lib/middleware/auth";
|
||||
import { withReadAuth, withTeamLeadAuth, withUserAuth } from "@/lib/middleware/auth";
|
||||
|
||||
async function getContractHandler(req, { params }) {
|
||||
const { id } = await params;
|
||||
@@ -21,6 +21,79 @@ async function getContractHandler(req, { params }) {
|
||||
return NextResponse.json(contract);
|
||||
}
|
||||
|
||||
async function updateContractHandler(req, { params }) {
|
||||
const { id } = await params;
|
||||
|
||||
try {
|
||||
const body = await req.json();
|
||||
const {
|
||||
contract_number,
|
||||
contract_name,
|
||||
customer_contract_number,
|
||||
customer,
|
||||
investor,
|
||||
date_signed,
|
||||
finish_date,
|
||||
} = body;
|
||||
|
||||
// Check if contract exists
|
||||
const existingContract = db
|
||||
.prepare("SELECT * FROM contracts WHERE contract_id = ?")
|
||||
.get(id);
|
||||
|
||||
if (!existingContract) {
|
||||
return NextResponse.json(
|
||||
{ error: "Contract not found" },
|
||||
{ status: 404 }
|
||||
);
|
||||
}
|
||||
|
||||
// Update the contract
|
||||
const result = db
|
||||
.prepare(
|
||||
`UPDATE contracts
|
||||
SET contract_number = ?,
|
||||
contract_name = ?,
|
||||
customer_contract_number = ?,
|
||||
customer = ?,
|
||||
investor = ?,
|
||||
date_signed = ?,
|
||||
finish_date = ?
|
||||
WHERE contract_id = ?`
|
||||
)
|
||||
.run(
|
||||
contract_number,
|
||||
contract_name || null,
|
||||
customer_contract_number || null,
|
||||
customer || null,
|
||||
investor || null,
|
||||
date_signed || null,
|
||||
finish_date || null,
|
||||
id
|
||||
);
|
||||
|
||||
if (result.changes === 0) {
|
||||
return NextResponse.json(
|
||||
{ error: "Failed to update contract" },
|
||||
{ status: 500 }
|
||||
);
|
||||
}
|
||||
|
||||
// Fetch and return the updated contract
|
||||
const updatedContract = db
|
||||
.prepare("SELECT * FROM contracts WHERE contract_id = ?")
|
||||
.get(id);
|
||||
|
||||
return NextResponse.json(updatedContract);
|
||||
} catch (error) {
|
||||
console.error("Error updating contract:", error);
|
||||
return NextResponse.json(
|
||||
{ error: "Internal server error" },
|
||||
{ status: 500 }
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
async function deleteContractHandler(req, { params }) {
|
||||
const { id } = params;
|
||||
|
||||
@@ -61,4 +134,5 @@ async function deleteContractHandler(req, { params }) {
|
||||
|
||||
// Protected routes - require authentication
|
||||
export const GET = withReadAuth(getContractHandler);
|
||||
export const DELETE = withUserAuth(deleteContractHandler);
|
||||
export const PUT = withUserAuth(updateContractHandler);
|
||||
export const DELETE = withTeamLeadAuth(deleteContractHandler);
|
||||
|
||||
@@ -207,7 +207,10 @@ export default function ContactsPage() {
|
||||
{/* Stats */}
|
||||
{stats && (
|
||||
<div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-6 gap-4 mb-6">
|
||||
<Card>
|
||||
<Card
|
||||
className={`cursor-pointer transition-all hover:shadow-lg ${typeFilter === 'all' ? 'ring-2 ring-gray-900' : ''}`}
|
||||
onClick={() => setTypeFilter('all')}
|
||||
>
|
||||
<CardContent className="p-4">
|
||||
<div className="text-2xl font-bold text-gray-900">
|
||||
{stats.total_contacts}
|
||||
@@ -215,7 +218,10 @@ export default function ContactsPage() {
|
||||
<div className="text-sm text-gray-600">Wszystkie</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card>
|
||||
<Card
|
||||
className={`cursor-pointer transition-all hover:shadow-lg ${typeFilter === 'project' ? 'ring-2 ring-blue-600' : ''}`}
|
||||
onClick={() => setTypeFilter('project')}
|
||||
>
|
||||
<CardContent className="p-4">
|
||||
<div className="text-2xl font-bold text-blue-600">
|
||||
{stats.project_contacts}
|
||||
@@ -223,7 +229,10 @@ export default function ContactsPage() {
|
||||
<div className="text-sm text-gray-600">Projekty</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card>
|
||||
<Card
|
||||
className={`cursor-pointer transition-all hover:shadow-lg ${typeFilter === 'contractor' ? 'ring-2 ring-orange-600' : ''}`}
|
||||
onClick={() => setTypeFilter('contractor')}
|
||||
>
|
||||
<CardContent className="p-4">
|
||||
<div className="text-2xl font-bold text-orange-600">
|
||||
{stats.contractor_contacts}
|
||||
@@ -231,7 +240,10 @@ export default function ContactsPage() {
|
||||
<div className="text-sm text-gray-600">Wykonawcy</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card>
|
||||
<Card
|
||||
className={`cursor-pointer transition-all hover:shadow-lg ${typeFilter === 'office' ? 'ring-2 ring-purple-600' : ''}`}
|
||||
onClick={() => setTypeFilter('office')}
|
||||
>
|
||||
<CardContent className="p-4">
|
||||
<div className="text-2xl font-bold text-purple-600">
|
||||
{stats.office_contacts}
|
||||
@@ -239,7 +251,10 @@ export default function ContactsPage() {
|
||||
<div className="text-sm text-gray-600">Urzędy</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card>
|
||||
<Card
|
||||
className={`cursor-pointer transition-all hover:shadow-lg ${typeFilter === 'supplier' ? 'ring-2 ring-green-600' : ''}`}
|
||||
onClick={() => setTypeFilter('supplier')}
|
||||
>
|
||||
<CardContent className="p-4">
|
||||
<div className="text-2xl font-bold text-green-600">
|
||||
{stats.supplier_contacts}
|
||||
@@ -247,7 +262,10 @@ export default function ContactsPage() {
|
||||
<div className="text-sm text-gray-600">Dostawcy</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
<Card>
|
||||
<Card
|
||||
className={`cursor-pointer transition-all hover:shadow-lg ${typeFilter === 'other' ? 'ring-2 ring-gray-600' : ''}`}
|
||||
onClick={() => setTypeFilter('other')}
|
||||
>
|
||||
<CardContent className="p-4">
|
||||
<div className="text-2xl font-bold text-gray-600">
|
||||
{stats.other_contacts}
|
||||
|
||||
139
src/app/contracts/[id]/edit/page.js
Normal file
139
src/app/contracts/[id]/edit/page.js
Normal file
@@ -0,0 +1,139 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect, useState } from "react";
|
||||
import { useParams } from "next/navigation";
|
||||
import ContractForm from "@/components/ContractForm";
|
||||
import PageContainer from "@/components/ui/PageContainer";
|
||||
import PageHeader from "@/components/ui/PageHeader";
|
||||
import Button from "@/components/ui/Button";
|
||||
import Link from "next/link";
|
||||
import { LoadingState } from "@/components/ui/States";
|
||||
import { useTranslation } from "@/lib/i18n";
|
||||
|
||||
export default function EditContractPage() {
|
||||
const params = useParams();
|
||||
const id = params.id;
|
||||
const [contract, setContract] = useState(null);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState(null);
|
||||
const { t } = useTranslation();
|
||||
|
||||
useEffect(() => {
|
||||
async function fetchContract() {
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
try {
|
||||
const res = await fetch(`/api/contracts/${id}`);
|
||||
|
||||
if (!res.ok) {
|
||||
throw new Error("Failed to fetch contract");
|
||||
}
|
||||
|
||||
const data = await res.json();
|
||||
setContract(data);
|
||||
} catch (error) {
|
||||
console.error("Error fetching contract:", error);
|
||||
setError("Nie udało się pobrać danych umowy.");
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}
|
||||
|
||||
if (id) {
|
||||
fetchContract();
|
||||
}
|
||||
}, [id]);
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<PageContainer>
|
||||
<PageHeader
|
||||
title={t('contracts.editContract')}
|
||||
description={t('contracts.editContractDescription')}
|
||||
/>
|
||||
<LoadingState message={t('navigation.loading')} />
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
|
||||
if (error || !contract) {
|
||||
return (
|
||||
<PageContainer>
|
||||
<PageHeader
|
||||
title={t('contracts.editContract')}
|
||||
description={t('contracts.editContractDescription')}
|
||||
/>
|
||||
<div className="bg-red-50 border border-red-200 rounded-lg p-4 flex items-start mb-6">
|
||||
<svg
|
||||
className="w-5 h-5 text-red-600 mr-3 mt-0.5 flex-shrink-0"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||
/>
|
||||
</svg>
|
||||
<div className="flex-1">
|
||||
<p className="text-sm font-medium text-red-800">
|
||||
{error || "Nie znaleziono umowy."}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<Link href="/contracts">
|
||||
<Button variant="outline">
|
||||
<svg
|
||||
className="w-4 h-4 mr-2"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M15 19l-7-7 7-7"
|
||||
/>
|
||||
</svg>
|
||||
{t('contracts.backToContracts')}
|
||||
</Button>
|
||||
</Link>
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<PageContainer>
|
||||
<PageHeader
|
||||
title={t('contracts.editContract')}
|
||||
description={`${t('contracts.editing')} ${contract.contract_number}`}
|
||||
action={
|
||||
<Link href={`/contracts/${id}`}>
|
||||
<Button variant="outline" size="sm">
|
||||
<svg
|
||||
className="w-4 h-4 mr-2"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M15 19l-7-7 7-7"
|
||||
/>
|
||||
</svg>
|
||||
{t('contracts.backToContract')}
|
||||
</Button>
|
||||
</Link>
|
||||
}
|
||||
/>
|
||||
<div className="max-w-2xl">
|
||||
<ContractForm initialData={contract} />
|
||||
</div>
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
@@ -113,6 +113,24 @@ export default function ContractDetailsPage() {
|
||||
{t('contracts.backToContracts')}
|
||||
</Button>
|
||||
</Link>
|
||||
<Link href={`/contracts/${contractId}/edit`}>
|
||||
<Button variant="outline" size="sm">
|
||||
<svg
|
||||
className="w-4 h-4 mr-2"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"
|
||||
/>
|
||||
</svg>
|
||||
{t('contracts.editContract')}
|
||||
</Button>
|
||||
</Link>
|
||||
<Link href={`/projects/new?contract_id=${contractId}`}>
|
||||
<Button variant="primary" size="sm">
|
||||
<svg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import { useEffect, useState } from "react";
|
||||
import Link from "next/link";
|
||||
import { useSession } from "next-auth/react";
|
||||
import { Card, CardHeader, CardContent } from "@/components/ui/Card";
|
||||
import Button from "@/components/ui/Button";
|
||||
import Badge from "@/components/ui/Badge";
|
||||
@@ -15,6 +16,7 @@ import { useTranslation } from "@/lib/i18n";
|
||||
|
||||
export default function ContractsMainPage() {
|
||||
const { t } = useTranslation();
|
||||
const { data: session } = useSession();
|
||||
const [contracts, setContracts] = useState([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [searchTerm, setSearchTerm] = useState("");
|
||||
@@ -22,17 +24,27 @@ export default function ContractsMainPage() {
|
||||
const [sortBy, setSortBy] = useState("date_signed");
|
||||
const [sortOrder, setSortOrder] = useState("desc");
|
||||
const [statusFilter, setStatusFilter] = useState("all");
|
||||
const [showDeleteModal, setShowDeleteModal] = useState(false);
|
||||
const [contractToDelete, setContractToDelete] = useState(null);
|
||||
const [deleting, setDeleting] = useState(false);
|
||||
const [error, setError] = useState(null);
|
||||
const [success, setSuccess] = useState(null);
|
||||
|
||||
useEffect(() => {
|
||||
async function fetchContracts() {
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
try {
|
||||
const res = await fetch("/api/contracts");
|
||||
if (!res.ok) {
|
||||
throw new Error("Failed to fetch contracts");
|
||||
}
|
||||
const data = await res.json();
|
||||
setContracts(data);
|
||||
setFilteredContracts(data);
|
||||
} catch (error) {
|
||||
console.error("Error fetching contracts:", error);
|
||||
setError("Nie udało się pobrać listy umów. Spróbuj ponownie później.");
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
@@ -93,27 +105,6 @@ export default function ContractsMainPage() {
|
||||
setFilteredContracts(filtered);
|
||||
}, [searchTerm, contracts, sortBy, sortOrder, statusFilter]);
|
||||
|
||||
async function handleDelete(id) {
|
||||
const confirmed = confirm("Czy na pewno chcesz usunąć tę umowę?");
|
||||
if (!confirmed) return;
|
||||
|
||||
try {
|
||||
const res = await fetch(`/api/contracts/${id}`, {
|
||||
method: "DELETE",
|
||||
});
|
||||
|
||||
if (res.ok) {
|
||||
setContracts(contracts.filter((c) => c.contract_id !== id));
|
||||
} else {
|
||||
alert("Błąd podczas usuwania umowy.");
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error deleting contract:", error);
|
||||
alert("Błąd podczas usuwania umowy.");
|
||||
}
|
||||
}
|
||||
|
||||
// Get contract statistics
|
||||
const getContractStats = () => {
|
||||
const currentDate = new Date();
|
||||
const total = contracts.length;
|
||||
@@ -148,25 +139,50 @@ export default function ContractsMainPage() {
|
||||
}
|
||||
};
|
||||
|
||||
async function handleDelete(id) {
|
||||
const confirmed = confirm("Czy na pewno chcesz usunąć tę umowę?");
|
||||
if (!confirmed) return;
|
||||
const initiateDelete = (contract) => {
|
||||
setContractToDelete(contract);
|
||||
setShowDeleteModal(true);
|
||||
};
|
||||
|
||||
const handleDelete = async () => {
|
||||
if (!contractToDelete) return;
|
||||
|
||||
setDeleting(true);
|
||||
setError(null);
|
||||
|
||||
try {
|
||||
const res = await fetch(`/api/contracts/${id}`, {
|
||||
const res = await fetch(`/api/contracts/${contractToDelete.contract_id}`, {
|
||||
method: "DELETE",
|
||||
});
|
||||
|
||||
const data = await res.json();
|
||||
|
||||
if (res.ok) {
|
||||
setContracts(contracts.filter((c) => c.contract_id !== id));
|
||||
setContracts(contracts.filter((c) => c.contract_id !== contractToDelete.contract_id));
|
||||
setSuccess(`Umowa "${contractToDelete.contract_number}" została usunięta.`);
|
||||
setShowDeleteModal(false);
|
||||
setContractToDelete(null);
|
||||
|
||||
// Auto-hide success message after 5 seconds
|
||||
setTimeout(() => setSuccess(null), 5000);
|
||||
} else {
|
||||
alert("Błąd podczas usuwania umowy.");
|
||||
setError(data.error || "Nie udało się usunąć umowy.");
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error deleting contract:", error);
|
||||
alert("Błąd podczas usuwania umowy.");
|
||||
setError("Wystąpił błąd podczas usuwania umowy. Spróbuj ponownie.");
|
||||
} finally {
|
||||
setDeleting(false);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const cancelDelete = () => {
|
||||
if (!deleting) {
|
||||
setShowDeleteModal(false);
|
||||
setContractToDelete(null);
|
||||
setError(null);
|
||||
}
|
||||
};
|
||||
|
||||
const handleSearchChange = (e) => {
|
||||
setSearchTerm(e.target.value);
|
||||
@@ -264,6 +280,67 @@ export default function ContractsMainPage() {
|
||||
</Button>
|
||||
</Link>{" "}
|
||||
</PageHeader>
|
||||
|
||||
{/* Success Message */}
|
||||
{success && (
|
||||
<div className="mb-6 bg-green-50 border border-green-200 rounded-lg p-4 flex items-start">
|
||||
<svg
|
||||
className="w-5 h-5 text-green-600 mr-3 mt-0.5 flex-shrink-0"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||
/>
|
||||
</svg>
|
||||
<div className="flex-1">
|
||||
<p className="text-sm font-medium text-green-800">{success}</p>
|
||||
</div>
|
||||
<button
|
||||
onClick={() => setSuccess(null)}
|
||||
className="text-green-600 hover:text-green-800 ml-3"
|
||||
>
|
||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Error Message */}
|
||||
{error && (
|
||||
<div className="mb-6 bg-red-50 border border-red-200 rounded-lg p-4 flex items-start">
|
||||
<svg
|
||||
className="w-5 h-5 text-red-600 mr-3 mt-0.5 flex-shrink-0"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||
/>
|
||||
</svg>
|
||||
<div className="flex-1">
|
||||
<p className="text-sm font-medium text-red-800">{error}</p>
|
||||
</div>
|
||||
<button
|
||||
onClick={() => setError(null)}
|
||||
className="text-red-600 hover:text-red-800 ml-3"
|
||||
>
|
||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Statistics Cards */}
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-6 mb-6">
|
||||
<Card>
|
||||
@@ -573,26 +650,28 @@ export default function ContractsMainPage() {
|
||||
</svg>
|
||||
Szczegóły
|
||||
</Link>
|
||||
<Button
|
||||
variant="danger"
|
||||
size="sm"
|
||||
onClick={() => handleDelete(contract.contract_id)}
|
||||
>
|
||||
<svg
|
||||
className="w-4 h-4 mr-1"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
{session?.user?.role === 'team_lead' && (
|
||||
<Button
|
||||
variant="danger"
|
||||
size="sm"
|
||||
onClick={() => initiateDelete(contract)}
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"
|
||||
/>
|
||||
</svg>
|
||||
Usuń
|
||||
</Button>
|
||||
<svg
|
||||
className="w-4 h-4 mr-1"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"
|
||||
/>
|
||||
</svg>
|
||||
Usuń
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</CardContent>
|
||||
@@ -620,6 +699,124 @@ export default function ContractsMainPage() {
|
||||
</p>{" "}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Delete Confirmation Modal */}
|
||||
{showDeleteModal && contractToDelete && (
|
||||
<div
|
||||
className="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-[9999]"
|
||||
onClick={(e) => e.target === e.currentTarget && !deleting && cancelDelete()}
|
||||
>
|
||||
<div className="bg-white dark:bg-gray-800 rounded-lg p-6 w-full max-w-md mx-4">
|
||||
<div className="flex items-center justify-between mb-4">
|
||||
<div className="flex items-center">
|
||||
<div className="flex-shrink-0 w-10 h-10 bg-red-100 rounded-full flex items-center justify-center">
|
||||
<svg
|
||||
className="w-6 h-6 text-red-600"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
|
||||
/>
|
||||
</svg>
|
||||
</div>
|
||||
<h3 className="ml-3 text-lg font-semibold text-gray-900 dark:text-white">
|
||||
Potwierdź usunięcie
|
||||
</h3>
|
||||
</div>
|
||||
{!deleting && (
|
||||
<button
|
||||
onClick={cancelDelete}
|
||||
className="text-gray-400 hover:text-gray-600 dark:hover:text-gray-200"
|
||||
>
|
||||
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="mb-6">
|
||||
<p className="text-gray-700 dark:text-gray-300 mb-3">
|
||||
Czy na pewno chcesz usunąć umowę <strong className="font-semibold">"{contractToDelete.contract_number}"</strong>
|
||||
{contractToDelete.contract_name && (
|
||||
<> — <strong className="font-semibold">{contractToDelete.contract_name}</strong></>
|
||||
)}?
|
||||
</p>
|
||||
<p className="text-sm text-red-600 dark:text-red-400">
|
||||
Ta operacja jest nieodwracalna.
|
||||
</p>
|
||||
{contractToDelete.customer && (
|
||||
<p className="mt-2 text-sm text-gray-600 dark:text-gray-400">
|
||||
Zleceniodawca: <strong>{contractToDelete.customer}</strong>
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="flex gap-3 justify-end">
|
||||
<Button
|
||||
variant="outline"
|
||||
onClick={cancelDelete}
|
||||
disabled={deleting}
|
||||
>
|
||||
Anuluj
|
||||
</Button>
|
||||
<Button
|
||||
variant="danger"
|
||||
onClick={handleDelete}
|
||||
disabled={deleting}
|
||||
>
|
||||
{deleting ? (
|
||||
<>
|
||||
<svg
|
||||
className="animate-spin -ml-1 mr-2 h-4 w-4 text-white inline-block"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<circle
|
||||
className="opacity-25"
|
||||
cx="12"
|
||||
cy="12"
|
||||
r="10"
|
||||
stroke="currentColor"
|
||||
strokeWidth="4"
|
||||
/>
|
||||
<path
|
||||
className="opacity-75"
|
||||
fill="currentColor"
|
||||
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
||||
/>
|
||||
</svg>
|
||||
Usuwanie...
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<svg
|
||||
className="w-4 h-4 mr-2 inline-block"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
viewBox="0 0 24 24"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"
|
||||
/>
|
||||
</svg>
|
||||
Usuń umowę
|
||||
</>
|
||||
)}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import { useState, useEffect } from "react";
|
||||
import { useRouter } from "next/navigation";
|
||||
import { Card, CardHeader, CardContent } from "@/components/ui/Card";
|
||||
import Button from "@/components/ui/Button";
|
||||
@@ -8,8 +8,9 @@ import { Input } from "@/components/ui/Input";
|
||||
import { formatDateForInput } from "@/lib/utils";
|
||||
import { useTranslation } from "@/lib/i18n";
|
||||
|
||||
export default function ContractForm() {
|
||||
export default function ContractForm({ initialData = null }) {
|
||||
const { t } = useTranslation();
|
||||
const isEdit = !!initialData;
|
||||
const [form, setForm] = useState({
|
||||
contract_number: "",
|
||||
contract_name: "",
|
||||
@@ -23,6 +24,21 @@ export default function ContractForm() {
|
||||
const [loading, setLoading] = useState(false);
|
||||
const router = useRouter();
|
||||
|
||||
// Update form when initialData changes (for edit mode)
|
||||
useEffect(() => {
|
||||
if (initialData) {
|
||||
setForm({
|
||||
contract_number: initialData.contract_number || "",
|
||||
contract_name: initialData.contract_name || "",
|
||||
customer_contract_number: initialData.customer_contract_number || "",
|
||||
customer: initialData.customer || "",
|
||||
investor: initialData.investor || "",
|
||||
date_signed: initialData.date_signed || "",
|
||||
finish_date: initialData.finish_date || "",
|
||||
});
|
||||
}
|
||||
}, [initialData]);
|
||||
|
||||
function handleChange(e) {
|
||||
setForm({ ...form, [e.target.name]: e.target.value });
|
||||
}
|
||||
@@ -34,21 +50,32 @@ export default function ContractForm() {
|
||||
try {
|
||||
console.log("Submitting form:", form);
|
||||
|
||||
const res = await fetch("/api/contracts", {
|
||||
method: "POST",
|
||||
const url = isEdit
|
||||
? `/api/contracts/${initialData.contract_id}`
|
||||
: "/api/contracts";
|
||||
const method = isEdit ? "PUT" : "POST";
|
||||
|
||||
const res = await fetch(url, {
|
||||
method,
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: JSON.stringify(form),
|
||||
});
|
||||
|
||||
if (res.ok) {
|
||||
const contract = await res.json();
|
||||
router.push(`/contracts/${contract.contract_id}`);
|
||||
router.push(`/contracts/${contract.contract_id || initialData.contract_id}`);
|
||||
} else {
|
||||
alert(t('contracts.failedToCreateContract'));
|
||||
const errorMessage = isEdit
|
||||
? t('contracts.failedToUpdateContract')
|
||||
: t('contracts.failedToCreateContract');
|
||||
alert(errorMessage);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error creating contract:", error);
|
||||
alert(t('contracts.failedToCreateContract'));
|
||||
console.error(`Error ${isEdit ? 'updating' : 'creating'} contract:`, error);
|
||||
const errorMessage = isEdit
|
||||
? t('contracts.failedToUpdateContract')
|
||||
: t('contracts.failedToCreateContract');
|
||||
alert(errorMessage);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
@@ -189,7 +216,7 @@ export default function ContractForm() {
|
||||
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
||||
></path>
|
||||
</svg>
|
||||
{t('common.creating')}
|
||||
{isEdit ? t('common.updating') : t('common.creating')}
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
@@ -203,10 +230,10 @@ export default function ContractForm() {
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={2}
|
||||
d="M12 4v16m8-8H4"
|
||||
d={isEdit ? "M5 13l4 4L19 7" : "M12 4v16m8-8H4"}
|
||||
/>
|
||||
</svg>
|
||||
{t('contracts.createContract')}
|
||||
{isEdit ? t('contracts.updateContract') : t('contracts.createContract')}
|
||||
</>
|
||||
)}
|
||||
</Button>
|
||||
|
||||
@@ -287,6 +287,11 @@ const translations = {
|
||||
contract: "Umowa",
|
||||
newContract: "Nowa umowa",
|
||||
editContract: "Edytuj umowę",
|
||||
editContractDescription: "Edycja szczegółów umowy",
|
||||
editing: "Edycja umowy",
|
||||
backToContract: "Powrót do umowy",
|
||||
updateContract: "Zaktualizuj umowę",
|
||||
failedToUpdateContract: "Nie udało się zaktualizować umowy. Sprawdź dane i spróbuj ponownie.",
|
||||
deleteContract: "Usuń umowę",
|
||||
contractNumber: "Numer umowy",
|
||||
contractName: "Nazwa umowy",
|
||||
@@ -940,8 +945,14 @@ const translations = {
|
||||
contracts: {
|
||||
title: "Contracts",
|
||||
subtitle: "Manage your contracts and agreements",
|
||||
contract: "Contract",
|
||||
newContract: "New Contract",
|
||||
editContract: "Edit Contract",
|
||||
editContractDescription: "Edit contract details",
|
||||
editing: "Editing contract",
|
||||
backToContract: "Back to Contract",
|
||||
updateContract: "Update Contract",
|
||||
failedToUpdateContract: "Failed to update contract. Please check your data and try again.",
|
||||
deleteContract: "Delete Contract",
|
||||
contractNumber: "Contract Number",
|
||||
contractName: "Contract Name",
|
||||
@@ -968,7 +979,40 @@ const translations = {
|
||||
signedOn: "Signed:",
|
||||
finishOn: "Finish:",
|
||||
customerLabel: "Customer:",
|
||||
investorLabel: "Investor:"
|
||||
investorLabel: "Investor:",
|
||||
loadingContractDetails: "Loading contract details...",
|
||||
contractNotFound: "Contract not found.",
|
||||
backToContracts: "Back to Contracts",
|
||||
addProject: "Add Project",
|
||||
contractInformation: "Contract Information",
|
||||
summary: "Summary",
|
||||
projectsCount: "Projects Count",
|
||||
projects: "projects",
|
||||
contractStatus: "Contract Status",
|
||||
contractDocuments: "Contract Documents",
|
||||
uploadDocument: "Upload Document",
|
||||
associatedProjects: "Associated Projects",
|
||||
noProjectsYet: "No projects yet",
|
||||
getStartedMessage: "Get started by creating the first project for this contract",
|
||||
createFirstProject: "Create First Project",
|
||||
viewDetails: "View Details",
|
||||
createNewContract: "Create New Contract",
|
||||
addNewContractDescription: "Add a new contract to your portfolio",
|
||||
contractDetails: "Contract Details",
|
||||
failedToCreateContract: "Failed to create contract. Please check your data and try again.",
|
||||
uploadDocumentTitle: "Upload Document",
|
||||
descriptionOptional: "Description (optional)",
|
||||
descriptionPlaceholder: "Short description of the document...",
|
||||
uploading: "Uploading...",
|
||||
dropFilesHere: "Drop files here or click to browse",
|
||||
supportedFiles: "PDF, DOC, XLS, Images up to 10MB",
|
||||
chooseFile: "Choose File",
|
||||
failedToUploadFile: "Failed to upload file",
|
||||
loadingFiles: "Loading files...",
|
||||
noDocumentsUploaded: "No documents uploaded",
|
||||
download: "Download",
|
||||
confirmDeleteFile: "Are you sure you want to delete this file?",
|
||||
failedToDeleteFile: "Failed to delete file"
|
||||
},
|
||||
|
||||
tasks: {
|
||||
|
||||
@@ -397,6 +397,34 @@ export default function initializeDatabase() {
|
||||
console.warn("Migration warning:", e.message);
|
||||
}
|
||||
|
||||
// Migration: Add initial column to users table
|
||||
try {
|
||||
const columns = db.prepare("PRAGMA table_info(users)").all();
|
||||
const hasInitial = columns.some(col => col.name === 'initial');
|
||||
|
||||
if (!hasInitial) {
|
||||
// Add initial column
|
||||
db.exec(`ALTER TABLE users ADD COLUMN initial TEXT;`);
|
||||
|
||||
// Generate initials from existing names
|
||||
const users = db.prepare('SELECT id, name FROM users WHERE initial IS NULL').all();
|
||||
const updateStmt = db.prepare('UPDATE users SET initial = ? WHERE id = ?');
|
||||
|
||||
users.forEach(user => {
|
||||
if (user.name) {
|
||||
// Generate initials from name (e.g., "John Doe" -> "JD")
|
||||
const nameParts = user.name.trim().split(/\s+/);
|
||||
const initial = nameParts.map(part => part.charAt(0).toUpperCase()).join('');
|
||||
updateStmt.run(initial, user.id);
|
||||
}
|
||||
});
|
||||
|
||||
console.log("✅ Added initial column to users table and generated initials");
|
||||
}
|
||||
} catch (e) {
|
||||
console.warn("Migration warning:", e.message);
|
||||
}
|
||||
|
||||
// Migration: Rename project_type to task_category in task_sets
|
||||
try {
|
||||
// Check if the old column exists and rename it
|
||||
|
||||
@@ -12,10 +12,14 @@ export async function createUser({ name, username, password, role = 'user', is_a
|
||||
const passwordHash = await bcrypt.hash(password, 12)
|
||||
const userId = randomBytes(16).toString('hex')
|
||||
|
||||
// Generate initials from name (e.g., "John Doe" -> "JD")
|
||||
const nameParts = name.trim().split(/\s+/)
|
||||
const initial = nameParts.map(part => part.charAt(0).toUpperCase()).join('')
|
||||
|
||||
const result = db.prepare(`
|
||||
INSERT INTO users (id, name, username, password_hash, role, is_active, can_be_assigned)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?)
|
||||
`).run(userId, name, username, passwordHash, role, is_active ? 1 : 0, can_be_assigned ? 1 : 0)
|
||||
INSERT INTO users (id, name, username, password_hash, role, initial, is_active, can_be_assigned)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
||||
`).run(userId, name, username, passwordHash, role, initial, is_active ? 1 : 0, can_be_assigned ? 1 : 0)
|
||||
|
||||
return db.prepare(`
|
||||
SELECT id, name, username, role, created_at, updated_at, last_login,
|
||||
|
||||
Reference in New Issue
Block a user