Browse Source

2021-02-03 운영배포 오류수정

Seo 4 years ago
parent
commit
a157659190

+ 0 - 1
src/main/java/com/lemon/lifecenter/common/LifeCenterInterCeptor.java

@@ -113,7 +113,6 @@ public class LifeCenterInterCeptor extends HandlerInterceptorAdapter {
                         String menuType = roleDTO.getMenuType();
                         boolean roleFlag = true;
                         
-                        System.err.println( );
                         if( menuType.equals( "C" ) ) {
                             if( roleDTO.getCreateYn().equals( "N" ) ) {
                                 roleFlag = false;

+ 0 - 1
src/main/java/com/lemon/lifecenter/controller/BoardController.java

@@ -217,7 +217,6 @@ public class BoardController extends LifeCenterController {
             dto = boardService.selectFile(dto);
             String filePath = config.filePath + "/" + dto.getFileName();
             String fileName = dto.getFileOriginalName();
-            logger.error("filePath -- > " + filePath);
             LifeCenterFileDownload.download(request, response, filePath, fileName);
         }
     }

+ 0 - 3
src/main/java/com/lemon/lifecenter/controller/MobilePushController.java

@@ -45,9 +45,6 @@ public class MobilePushController extends LifeCenterController {
         }
         
         PushDTO dto = new PushDTO();
-        logger.error("date -- > " + ym);
-        logger.error("prevMonth -- > " + LifeCenterFunction.getPrevMonth(ym));
-        logger.error("nextMonth -- > " + LifeCenterFunction.getNextMonth(ym));
         
         String ym2 = ym.replace("-", "");
         dto.setYm(ym2);

+ 2 - 1
src/main/webapp/WEB-INF/jsp/include/sidebar.jsp

@@ -55,8 +55,9 @@
                     <c:forEach var="sm" items="${sideMenuList}">
                         <li class="sidebar-item 
                             <c:set var="menuPath" value="/${data._MENUPATH}/"/>
+                            <c:set var="menuPath2" value="/${data._MENUPATH2}"/>
                             <c:if test = "${menuPath ne '/clinic/'}"><c:if test = "${fn:contains( sm.menuPath, menuPath )}">active</c:if></c:if>
-                            <c:if test = "${menuPath eq '/clinic/'}"><c:if test = "${sm.menuPath eq data._URL}">active</c:if></c:if>
+                            <c:if test = "${menuPath eq '/clinic/'}"><c:if test = "${fn:contains( sm.menuPath, menuPath2 )}">active</c:if><c:if test = "${sm.menuPath eq '/clinic/state' and menuPath2 eq '/info'}"> active</c:if></c:if>
                             ">
                             <a class="sidebar-link" href="${sm.menuPath}"><c:out value="${sm.menuName}"/></a>
                         </li>

File diff suppressed because it is too large
+ 1 - 1
src/main/webapp/WEB-INF/jsp/login/staff.jsp