From 4fa32f94bcba9f8b9ff5a1fe7a2dc26bb56683c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Mon, 23 Mar 2026 13:31:14 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[=EA=B1=B0=EB=9E=98=EC=B2=98]=20?= =?UTF-8?q?=EB=B2=95=EC=9D=B8=EC=B9=B4=EB=93=9C=20=EC=8B=9C=20=EA=B3=84?= =?UTF-8?q?=EC=A2=8C=EB=B2=88=ED=98=B8=E2=86=92=EC=B9=B4=EB=93=9C=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EB=9D=BC=EB=B2=A8=20=EB=B3=80=EA=B2=BD=20+=20?= =?UTF-8?q?=EB=AA=A9=EB=A1=9D=EC=97=90=20=EB=A9=94=EB=AA=A8=20=EC=BB=AC?= =?UTF-8?q?=EB=9F=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/finance/partners.blade.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/resources/views/finance/partners.blade.php b/resources/views/finance/partners.blade.php index 3e6d6f84..1e6ee2af 100644 --- a/resources/views/finance/partners.blade.php +++ b/resources/views/finance/partners.blade.php @@ -296,14 +296,15 @@ function PartnersManagement() { 연락처 담당자 상태 + 메모 관리 {loading ? ( -
불러오는 중...
+
불러오는 중...
) : filteredPartners.length === 0 ? ( - 데이터가 없습니다. + 데이터가 없습니다. ) : filteredPartners.map(item => ( handleEdit(item)}> {item.id} @@ -313,6 +314,7 @@ function PartnersManagement() { {item.contact &&

{item.contact}

}{item.email &&

{item.email}

}

{item.manager}

{item.managerPhone &&

{item.managerPhone}

} {item.status === 'active' ? '활성' : '비활성'} +

{item.memo || '-'}

e.stopPropagation()}> @@ -401,7 +403,7 @@ className={`mb-4 border-2 border-dashed rounded-xl p-6 text-center cursor-pointe
setFormData(prev => ({ ...prev, contact: e.target.value }))} placeholder="02-1234-5678" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
setFormData(prev => ({ ...prev, email: e.target.value }))} placeholder="email@company.com" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
-
setFormData(prev => ({ ...prev, bankAccount: e.target.value }))} placeholder="000-000000-00000" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
+
setFormData(prev => ({ ...prev, bankAccount: e.target.value }))} placeholder={formData.registrationType === 'card' ? '0000-0000-0000-0000' : '000-000000-00000'} className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
setFormData(prev => ({ ...prev, manager: e.target.value }))} placeholder="담당자명" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
setFormData(prev => ({ ...prev, managerPhone: e.target.value }))} placeholder="010-1234-5678" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />