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); }