Косметические изменения

This commit is contained in:
2024-12-12 21:22:54 +03:00
parent 7fb67f0270
commit 7e46ccd589
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ SELECT
DATE_FORMAT(w.waybill_date, '%Y-%m-%d') AS 'Дата поставки',
TIME_FORMAT(w.waybill_date, '%H:%i') AS 'Время поставки',
s.name AS 'Поставщик',
wl.amount AS 'Количество'
wl.amount AS 'Количество (в шт.)'
FROM waybill w
JOIN (SELECT waybill_id, work_id, amount FROM waybill_lines) wl USING(waybill_id)