From 153c68c6ab0cedb991ee781d80232cbee5931e19 Mon Sep 17 00:00:00 2001 From: eastargh Date: Thu, 9 Jul 2026 11:47:23 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AC=EC=9D=B4=ED=8A=B8=EB=A7=B5=20?= =?UTF-8?q?=EC=9C=84=EC=B9=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/jsp/common/screen/top_04.jsp | 23 ++++++++----------- .../PortalInquiryManService.java | 2 +- 2 files changed, 10 insertions(+), 15 deletions(-) diff --git a/WebContent/jsp/common/screen/top_04.jsp b/WebContent/jsp/common/screen/top_04.jsp index 08c2841..c73ef17 100644 --- a/WebContent/jsp/common/screen/top_04.jsp +++ b/WebContent/jsp/common/screen/top_04.jsp @@ -249,9 +249,9 @@ "/> "/> @@ -543,11 +543,6 @@ parent.changeLocale($(this).val()); }); - $('.sitemap-link').on('mouseenter', function () { - $(this).closest('.gnb').addClass('sitemap-hover'); - }).on('mouseleave', function () { - $(this).closest('.gnb').removeClass('sitemap-hover'); - }); }); $(function() { @@ -578,13 +573,16 @@ <%=localeMessage.getString("screen.lastLogin") %> : <%=LastLoginYms%> [ <%=LastLoginIp%> ] <% } %> -
  • -
  • -
  • " + <% if (showSitemapLink) { %> +
  • " target="mainFrame" class="sitemap-link">사이트맵
  • + <% } %> +
  • " alt=""/><%= localeMessage.getString("screen.logout") %>
  • @@ -629,9 +627,6 @@ <%=subLayer.toString()%> - <% if (showSitemapLink) { %> - " target="mainFrame" class="sitemap-link">사이트맵 - <% } %>
    diff --git a/src/main/java/com/eactive/eai/rms/onl/apim/portalInquiry/PortalInquiryManService.java b/src/main/java/com/eactive/eai/rms/onl/apim/portalInquiry/PortalInquiryManService.java index e58f76b..2702642 100644 --- a/src/main/java/com/eactive/eai/rms/onl/apim/portalInquiry/PortalInquiryManService.java +++ b/src/main/java/com/eactive/eai/rms/onl/apim/portalInquiry/PortalInquiryManService.java @@ -167,7 +167,7 @@ public class PortalInquiryManService extends BaseService { Inquiry inquiry = portalInquiryService.getById(portalInquiryUI.getId()); validateNotClosed(inquiry); // 답변 대기중 상태일 경우만 답변완료로 상태 변경 - if(inquiry.getInquiryStatus().equals(PENDING)) { + if(inquiry.getInquiryStatus().equals(PENDING) || inquiry.getInquiryStatus().equals(REVIEWING)) { inquiry.setInquiryStatus(RESPONDED); }