From 7404aa68cb2ca06b4508ddb48cb7af4c112bf73d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 26 Feb 2026 10:38:43 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[sms]=20=EB=B0=9C=EC=8B=A0=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EA=B8=B0=EB=B3=B8=EA=B0=92=2002-0005-0006=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/barobill/sms/send/index.blade.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/views/barobill/sms/send/index.blade.php b/resources/views/barobill/sms/send/index.blade.php index 3ba545bd..7e657f51 100644 --- a/resources/views/barobill/sms/send/index.blade.php +++ b/resources/views/barobill/sms/send/index.blade.php @@ -48,7 +48,7 @@
@@ -177,12 +177,13 @@ function loadFromNumbers() { html += ''; area.innerHTML = html; - // 셀렉트 채우기 - select.innerHTML = ''; + // 셀렉트 채우기 (기본 발신번호 유지) + select.innerHTML = ''; numbers.forEach(num => { const number = num.FromNumber || num; + if (number === '0200050006' || number === '02-0005-0006') return; const opt = document.createElement('option'); - opt.value = number; + opt.value = number.replace(/-/g, ''); opt.textContent = number; select.appendChild(opt); });