diff --git a/src/main/java/nlib/info/service/impl/InformServiceImpl.java b/src/main/java/nlib/info/service/impl/InformServiceImpl.java index e6f3de82..c5be6fb6 100644 --- a/src/main/java/nlib/info/service/impl/InformServiceImpl.java +++ b/src/main/java/nlib/info/service/impl/InformServiceImpl.java @@ -112,6 +112,7 @@ public class InformServiceImpl implements InformService //----------------------------- // 전체 문화원 공통 사항 //----------------------------- + // 대출안내 HashMap operation1 = selectInfoContent(NlibProperty.getString("nlib.council.cd"), "OPERATION1"); if(envValues != null && operation1 != null && operation1.get("CONTENT") != null) { String content = operation1.get("CONTENT"); @@ -121,12 +122,16 @@ public class InformServiceImpl implements InformService operation1.put("CONTENT", content); } + // 반납안내 HashMap operation2 = selectInfoContent(NlibProperty.getString("nlib.council.cd"), "OPERATION2"); + + // 열람안내 HashMap operation3 = selectInfoContent(NlibProperty.getString("nlib.council.cd"), "OPERATION3"); //----------------------------- // 해당 문화원 특정 사항 //----------------------------- + // 온라인열람서비스 HashMap operation4 = selectInfoContent(councilCd, "OPERATION4"); operationInfo.put("OPERATION1", operation1); diff --git a/src/main/java/nlib/security/SpringSecurityConfig.java b/src/main/java/nlib/security/SpringSecurityConfig.java index 8768f87a..db798c38 100644 --- a/src/main/java/nlib/security/SpringSecurityConfig.java +++ b/src/main/java/nlib/security/SpringSecurityConfig.java @@ -89,6 +89,7 @@ public class SpringSecurityConfig extends WebSecurityConfigurerAdapter { .antMatchers("/homes/**").permitAll() .antMatchers("/cart/**").permitAll() .antMatchers("/bbs/**").permitAll() + .antMatchers("/search/**").permitAll() .antMatchers("/*.html").permitAll() .anyRequest().authenticated() .and().formLogin() diff --git a/src/main/webapp/WEB-INF/jsp/nlib/inform/selectNCultureOperationInfo.jsp b/src/main/webapp/WEB-INF/jsp/nlib/inform/selectNCultureOperationInfo.jsp index a895cb01..18399697 100644 --- a/src/main/webapp/WEB-INF/jsp/nlib/inform/selectNCultureOperationInfo.jsp +++ b/src/main/webapp/WEB-INF/jsp/nlib/inform/selectNCultureOperationInfo.jsp @@ -108,41 +108,7 @@ $( document ).ready(function() {

자료대출 안내

-
-

- 대상 : - 문화원 소장자료관 회원 (온라인 회원증 소지자) -

-

- 대출기간 : - 14일 -

-

- 대출 자료 수 : - 1인 5개 -

-

- 이용가능 시간 안내 : - 문화원 운영시간 내 (이용시간 및 휴관일 참조) -

-

- 대출 신청 안내 :
- - 대출가능 자료 중 이용중인 사람이 없는 자료의 경우, [대출신청]이 가능합니다.
- 방법 1) ‘소장자료’ 메뉴에서 자료 검색 → 원하는 자료 선택 → [대출신청] 클릭
- 방법 2) ‘소장자료’ 메뉴에서 자료 검색 → 원하는 자료들 카트 담기 → ‘카트’ 메뉴에서 대출할 자료 선택 → [대출신청/예약] 클릭
-
-

-

- 대출 신청 안내 :
- - 대출가능 자료 중 현재 대출중인 이용자는 있으나 대기자가 없는 자료의 경우, [대출예약]이 가능합니다.
- 반납된 자료는 3일간 별도 보관되며, 3일이 지나면 예약이 취소됩니다.
- 방법 1) ‘소장자료’ 메뉴에서 자료 검색 → 원하는 자료 선택 → [대출예약] 클릭
- 방법 2) ‘소장자료’ 메뉴에서 자료 검색 → 원하는 자료들 카트 담기 → ‘카트’ 메뉴에서 대출예약 할 자료 선택 → [대출신청/예약] 클릭
-
-

-
+ ${informContent1 }

자료열람 안내

@@ -171,6 +137,7 @@ $( document ).ready(function() {

반납지연(연체) 안내

+ ${informContent2 }

@@ -198,29 +165,6 @@ $( document ).ready(function() { -이용안내 - - - - -${pageTitle} - - - -

${pageTitle }

- -
-대출안내 -
-${informContent1 } -
- -
-반납안내 -
-${informContent2 } -
-
열람안내
diff --git a/src/main/webapp/WEB-INF/jsp/nlib/search/getDetailedSearchFormPopup.jsp b/src/main/webapp/WEB-INF/jsp/nlib/search/getDetailedSearchFormPopup.jsp index baf98b82..2e9226a4 100644 --- a/src/main/webapp/WEB-INF/jsp/nlib/search/getDetailedSearchFormPopup.jsp +++ b/src/main/webapp/WEB-INF/jsp/nlib/search/getDetailedSearchFormPopup.jsp @@ -1,319 +1,312 @@ -<% -/** - *
- * @Class Name : getDetailedSearchFormPopup.jsp
- * 
- * @Description : 상세검색 팝업 
- * 
- * 
- * @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
- *
- * 
- * - * @ ------------ -------- --------------------------- - * @ 수정일 수정자 수정내용 - * @ ------------ -------- --------------------------- - * @ 2021. 10. 19. JSYOO 최초 생성 - * - * - * @author 이씨플라자 * DIGITALSHIP JSYOO - * @since 2021. 10. 19. - * @version 1.0 - * - */ - %> -<%@ page language="java" contentType="text/html; charset=UTF-8" %> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %> -<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> -<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> -<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %> -상세 검색 - - - - -${pageTitle} - - - - - - - - - +<% +/** + *
+ * @Class Name : getDetailedSearchFormPopup.jsp
+ * 
+ * @Description : 상세검색 팝업 
+ * 
+ * 
+ * @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
+ *
+ * 
+ * + * @ ------------ -------- --------------------------- + * @ 수정일 수정자 수정내용 + * @ ------------ -------- --------------------------- + * @ 2021. 10. 19. JSYOO 최초 생성 + * + * + * @author 이씨플라자 * DIGITALSHIP JSYOO + * @since 2021. 10. 19. + * @version 1.0 + * + */ + %> +<%@ page language="java" contentType="text/html; charset=UTF-8" %> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> +<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %> +상세 검색 + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/tiles/inc-popup/menu-popup.jsp b/src/main/webapp/WEB-INF/tiles/inc-popup/menu-popup.jsp index 34fa1259..ec9a5dfd 100644 --- a/src/main/webapp/WEB-INF/tiles/inc-popup/menu-popup.jsp +++ b/src/main/webapp/WEB-INF/tiles/inc-popup/menu-popup.jsp @@ -1,4 +1,5 @@ <%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -닫기 + + diff --git a/src/main/webapp/WEB-INF/tiles/inc/header.jsp b/src/main/webapp/WEB-INF/tiles/inc/header.jsp index 82f722b5..fbbd1f1e 100644 --- a/src/main/webapp/WEB-INF/tiles/inc/header.jsp +++ b/src/main/webapp/WEB-INF/tiles/inc/header.jsp @@ -28,7 +28,8 @@ String councilNm = (String)session.getAttribute("councilNm");
- + +