From b98805bc5dd3065c223356c8a7f74d4d2b08acfe Mon Sep 17 00:00:00 2001 From: Anton Kamalov Date: Thu, 12 Dec 2024 21:26:16 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A2=D0=BE=20=D0=B6=D0=B5=20=D1=81=D0=B0?= =?UTF-8?q?=D0=BC=D0=BE=D0=B5,=20=D0=BD=D0=BE=20=D1=81=20=D0=BE=D1=82?= =?UTF-8?q?=D1=87=D1=91=D1=82=D0=B0=D0=BC=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App/Report/sql/sellers_report.sql | 2 +- App/Report/sql/workpiece_report.sql | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/App/Report/sql/sellers_report.sql b/App/Report/sql/sellers_report.sql index 49855a7..18b4e32 100644 --- a/App/Report/sql/sellers_report.sql +++ b/App/Report/sql/sellers_report.sql @@ -1,6 +1,6 @@ SELECT s.name AS Поставщик, - reports.sum AS 'Сумма в рублях', + reports.sum AS 'Сумма (в ₽)', reports.count AS 'Количество поставок' FROM reports JOIN sellers s ON reports.item_id = s.sel_id diff --git a/App/Report/sql/workpiece_report.sql b/App/Report/sql/workpiece_report.sql index 6abe547..ac9c8e2 100644 --- a/App/Report/sql/workpiece_report.sql +++ b/App/Report/sql/workpiece_report.sql @@ -1,6 +1,6 @@ SELECT w.name AS Наименование, - reports.sum AS 'Сумма в рублях', - reports.count AS 'Количество поставленных заготовок' + reports.sum AS 'Сумма (в ₽)', + reports.count AS 'Количество поставленных заготовок (в шт.)' from reports JOIN workpiece w ON reports.item_id = w.work_id WHERE report_category_id = '$id' AND (month = '$month' AND year = '$year')