Удаление ненужных файлов

This commit is contained in:
2024-11-15 01:29:48 +03:00
parent 851bcc6153
commit 2633a6f5da
2 changed files with 0 additions and 22 deletions

View File

@@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ошибка</title>
<link href="/static/css/auth.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Сожалеем</h1>
<p>{{ error_message }}</p>
<a href="{{ url_for('index') }}"><button>На главную страницу</button></a>
</body>
</html>

View File

@@ -1,9 +0,0 @@
SELECT w.date_of_delivery AS 'Дата поставки',
name AS 'Поставщик',
wl.count AS 'Количество',
wl.price * wl.count AS 'Общая сумма'
FROM waybill w
JOIN waybill_lines wl USING(waybill_id)
JOIN workpiece wp USING(work_id)
JOIN sellers USING(sel_id)
WHERE material = '${material}';