From aa222eec3a0f668c289d8a1da6322d45b536d6ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=9C=EA=B3=A8=EC=95=BD=EC=82=AC?= Date: Fri, 23 Jan 2026 19:05:33 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B1=B0=EB=9E=98=20=EC=84=B8=EB=B6=80?= =?UTF-8?q?=20=EB=82=B4=EC=97=AD=EC=9D=98=20=EB=8B=A8=EA=B0=80=20=EC=BB=AC?= =?UTF-8?q?=EB=9F=BC=20=EB=A7=A4=ED=95=91=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - SL_INPUT_PRICE → SL_NM_cost_a로 변경 - SL_INPUT_PRICE는 합계 금액이었음 (잘못된 매핑) - SL_NM_cost_a가 실제 개당 단가 Co-Authored-By: Claude Sonnet 4.5 --- backend/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app.py b/backend/app.py index 2de2e93..6e2c6cc 100644 --- a/backend/app.py +++ b/backend/app.py @@ -410,7 +410,7 @@ def admin_transaction_detail(transaction_id): S.DrugCode, ISNULL(G.GoodsName, '(약품명 없음)') AS goods_name, S.SL_NM_item AS quantity, - S.SL_INPUT_PRICE AS price, + S.SL_NM_cost_a AS price, S.SL_TOTAL_PRICE AS total FROM SALE_SUB S LEFT JOIN PM_DRUG.dbo.CD_GOODS G ON S.DrugCode = G.DrugCode