From 900b7dd04e63b2c74daa279c553bda266ed52459 Mon Sep 17 00:00:00 2001 From: wyh Date: Mon, 3 Feb 2025 10:13:03 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8B=A0=EC=B2=AD=EC=9D=B8=20=EC=A0=95?= =?UTF-8?q?=EB=B3=B4=20=EB=B6=88=EB=9F=AC=EC=98=A4=EA=B8=B0=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../user/mediation/WebMediationController.java | 17 ++++++++++------- .../web/user/mediation/mediationStep04_2.jsp | 6 +++--- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/main/java/seed/com/user/mediation/WebMediationController.java b/src/main/java/seed/com/user/mediation/WebMediationController.java index 57027077..4baa9ede 100644 --- a/src/main/java/seed/com/user/mediation/WebMediationController.java +++ b/src/main/java/seed/com/user/mediation/WebMediationController.java @@ -4990,17 +4990,20 @@ public class WebMediationController { // 휴대폰 번호 분리 String tel = (String) result.get("tel"); String tellNum[] = tel.split("-"); - result.put("rcePh1", tellNum[0]); - result.put("rcePh2", tellNum[1]); - result.put("rcePh3", tellNum[2]); + if(tellNum.length != 0) { + result.put("rcePh1", tellNum[0]); + result.put("rcePh2", tellNum[1]); + result.put("rcePh3", tellNum[2]); + } // 팩스번호 분리 String fax = (String) result.get("fax"); String faxNum[] = fax.split("-"); - result.put("rceFax1", faxNum[0]); - result.put("rceFax2", faxNum[1]); - result.put("rceFax3", faxNum[2]); - + if(faxNum.length != 0) { + result.put("rceFax1", faxNum[0]); + result.put("rceFax2", faxNum[1]); + result.put("rceFax3", faxNum[2]); + } modelAndView.addObject("result", result); diff --git a/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/mediationStep04_2.jsp b/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/mediationStep04_2.jsp index 937a7bb2..2cae0146 100644 --- a/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/mediationStep04_2.jsp +++ b/src/main/webapp/WEB-INF/jsp/_extra/web/user/mediation/mediationStep04_2.jsp @@ -1525,9 +1525,9 @@ FAX
- - - - - + - + - +