From ccbe596f6fde69fd554f2ed301b640897a7658a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Tue, 3 Feb 2026 07:57:30 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EC=A0=84=EC=9E=90=EC=84=B8=EA=B8=88?= =?UTF-8?q?=EA=B3=84=EC=82=B0=EC=84=9C=20=EC=9A=B4=EC=98=81=EB=AA=A8?= =?UTF-8?q?=EB=93=9C=20=EC=95=88=EC=A0=84=EC=9E=A5=EC=B9=98=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 운영 모드일 때 "새로 발행" 버튼에서 "(랜덤 데이터)" 텍스트 제거 - 운영 모드일 때 "랜덤 데이터 재생성" 버튼 숨김 - 운영 모드일 때 국세청 전송 경고 메시지 표시 - 운영 모드일 때 발행 버튼 빨간색으로 변경 (주의 환기) - 헤더에 "운영 모드" 뱃지 표시 (경고 아이콘 포함) Co-Authored-By: Claude Opus 4.5 --- resources/views/barobill/etax/index.blade.php | 42 +++++++++++++++---- 1 file changed, 35 insertions(+), 7 deletions(-) diff --git a/resources/views/barobill/etax/index.blade.php b/resources/views/barobill/etax/index.blade.php index 43025df3..d44e9f4d 100644 --- a/resources/views/barobill/etax/index.blade.php +++ b/resources/views/barobill/etax/index.blade.php @@ -101,6 +101,9 @@ isHeadquarters: {{ ($currentTenant?->id ?? 0) == 1 ? 'true' : 'false' }} }; + // 서버 모드 정보 + const IS_TEST_MODE = {{ $isTestMode ? 'true' : 'false' }}; + // StatCard Component const StatCard = ({ title, value, subtext, icon }) => (
@@ -352,15 +355,33 @@