From 4c033b05849de1f31c22ae57ffe9219a3ad6f8f0 Mon Sep 17 00:00:00 2001 From: thug0bin Date: Wed, 11 Mar 2026 23:33:11 +0900 Subject: [PATCH] =?UTF-8?q?feat(admin):=20=EA=B5=AC=EB=A7=A4=20=EC=9D=B4?= =?UTF-8?q?=EB=A0=A5=EC=97=90=20POS/QR=20=EC=86=8C=EC=8A=A4=20=EB=B1=83?= =?UTF-8?q?=EC=A7=80=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - QR 적립: 초록색 'QR' 뱃지 + 포인트 적립 표시 - POS 매핑: 회색 'POS' 뱃지 + '적립 안됨' 표시 - 구매 소스 시각적으로 구분 가능 --- backend/templates/admin.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/backend/templates/admin.html b/backend/templates/admin.html index faba9da..6bf23cd 100644 --- a/backend/templates/admin.html +++ b/backend/templates/admin.html @@ -1354,13 +1354,16 @@ html += `
-
+
${purchase.items_summary} + ${purchase.source === 'pos' + ? 'POS' + : 'QR'}
- ${purchase.date} | ${purchase.amount.toLocaleString()}원 구매 | ${purchase.points.toLocaleString()}P 적립 + ${purchase.date} | ${purchase.amount.toLocaleString()}원 구매 | ${purchase.points > 0 ? purchase.points.toLocaleString() + 'P 적립' : '적립 안됨'}