This commit is contained in:
2025-11-22 00:52:07 +04:00
parent dbf7dc8bbb
commit 46cd4ef38c
26 changed files with 3328 additions and 22 deletions

212
db.json Normal file
View File

@@ -0,0 +1,212 @@
{
"orders": [
{
"id": "1",
"clientName": "Иванов Иван Иванович",
"orderCost": 15000,
"orderDate": "2025-01-15",
"status": "in_progress",
"address": "ул. Ленина, 10",
"description": "Доставка строительных материалов"
},
{
"id": "2",
"clientName": "ООО 'СтройМир'",
"orderCost": 25000,
"orderDate": "2025-01-16",
"status": "in_progress",
"address": "пр. Мира, 25",
"description": "Перевозка оборудования"
},
{
"id": "3",
"clientName": "ЗАО 'ТехноПром'",
"orderCost": 18000,
"orderDate": "2025-01-17",
"status": "completed",
"address": "ул. Промышленная, 45",
"description": "Доставка офисной мебели"
},
{
"id": "4",
"clientName": "Сергеев Алексей Петрович",
"orderCost": 12000,
"orderDate": "2025-01-18",
"status": "pending",
"address": "пр. Космонавтов, 78",
"description": "Переезд квартиры"
},
{
"id": "5",
"clientName": "ИП Козлова Марина Сергеевна",
"orderCost": 22000,
"orderDate": "2025-01-19",
"status": "in_progress",
"address": "ул. Торговая, 12",
"description": "Доставка товаров для магазина"
},
{
"id": "6",
"clientName": "ООО 'СтройГрад'",
"orderCost": 35000,
"orderDate": "2025-01-20",
"status": "pending",
"address": "ул. Строителей, 33",
"description": "Перевозка кирпича"
},
{
"id": "7",
"clientName": "Федоров Дмитрий Иванович",
"orderCost": 8000,
"orderDate": "2025-01-21",
"status": "completed",
"address": "ул. Садовая, 15",
"description": "Перевозка бытовой техники"
},
{
"id": "8",
"clientName": "ООО 'ПромСнаб'",
"orderCost": 28000,
"orderDate": "2025-01-22",
"status": "cancelled",
"address": "пр. Заводской, 67",
"description": "Доставка станков"
},
{
"id": "9",
"clientName": "Александрова Ольга Викторовна",
"orderCost": 9500,
"orderDate": "2025-01-23",
"status": "pending",
"address": "ул. Центральная, 89",
"description": "Перевозка личных вещей"
},
{
"id": "10",
"clientName": "ООО 'ТоргСервис'",
"orderCost": 19500,
"orderDate": "2025-01-24",
"status": "in_progress",
"address": "ул. Коммерческая, 56",
"description": "Доставка продуктов питания"
},
{
"id": "11",
"clientName": "Васильев Павел Сергеевич",
"orderCost": 11000,
"orderDate": "2025-01-25",
"status": "completed",
"address": "ул. Молодежная, 23",
"description": "Переезд на новую квартиру"
},
{
"id": "12",
"clientName": "ЗАО 'ПромИнвест'",
"orderCost": 42000,
"orderDate": "2025-01-26",
"status": "pending",
"address": "пр. Индустриальный, 44",
"description": "Перевозка промышленного оборудования"
}
],
"vehicles": [
{
"id": "1",
"driverName": "Петров Петр Петрович",
"vehicleType": "Газель",
"licensePlate": "А123БВ77"
},
{
"id": "2",
"driverName": "Сидоров Алексей Владимирович",
"vehicleType": "Камаз",
"licensePlate": "В456ГД77"
},
{
"id": "3",
"driverName": "Кузнецов Михаил Иванович",
"vehicleType": "Газель",
"licensePlate": "С789ЕЖ77"
},
{
"id": "4",
"driverName": "Николаев Андрей Сергеевич",
"vehicleType": "ЗИЛ",
"licensePlate": "Д321ФГ77"
},
{
"id": "5",
"driverName": "Морозов Виктор Павлович",
"vehicleType": "Камаз",
"licensePlate": "Е654ХЦ77"
},
{
"id": "6",
"driverName": "Орлов Денис Александрович",
"vehicleType": "Газель",
"licensePlate": "Ж987ЧШ77"
},
{
"id": "7",
"driverName": "Белов Артем Игоревич",
"vehicleType": "Фургон",
"licensePlate": "З159ЩР77"
},
{
"id": "8",
"driverName": "Громов Сергей Викторович",
"vehicleType": "ЗИЛ",
"licensePlate": "И753ЪЫ77"
}
],
"waybillEntries": [
{
"id": "cdf9",
"vehicleId": "6",
"orderId": "1",
"startTime": "20:00",
"endTime": "22:00",
"date": "2025-11-21"
},
{
"id": "9c84",
"vehicleId": "6",
"orderId": "4",
"startTime": "14:00",
"endTime": "16:00",
"date": "2025-11-21"
},
{
"id": "c4a6",
"vehicleId": "6",
"orderId": "2",
"startTime": "10:00",
"endTime": "12:00",
"date": "2025-11-21"
},
{
"id": "e320",
"vehicleId": "1",
"orderId": "1",
"startTime": "08:00",
"endTime": "10:00",
"date": "2025-11-21"
},
{
"id": "08a1",
"vehicleId": "2",
"orderId": "2",
"startTime": "20:00",
"endTime": "22:00",
"date": "2025-11-21"
},
{
"id": "27df",
"vehicleId": "2",
"orderId": "4",
"startTime": "08:00",
"endTime": "09:00",
"date": "2025-11-21"
}
]
}