// 로그인한 이용자의 관리구분 var CURRENT_MANAGE_CODE = localStorage.getItem('current_user_manage_code'); var searchDivision; var IS_COPSV_USE = getEslOneBoolean("공동보존서고", "공동보존서고사용여부", CURRENT_MANAGE_CODE, "Y"); var MANAGE_CODE_SORT_YN = getViewOptionData_value('관리구분정렬표시',localStorage.getItem('current_user_manage_code')); var MOVEPAGE_YN = getViewOptionData_value('전체메뉴 화면새창여부',localStorage.getItem('current_user_manage_code')); //23.02.03 김길준 토스트 메시지 추가 var toast = document.querySelector('smart-toast'); // 전페이지 반영 텍스트 스타일 var layout_option_for_allpage; //23.09.05 정총명 이용자 사진 사용여부에 따른 데이터 조회 var USE_USER_IMAGE = getViewOptionData_value('이용자사진',localStorage.getItem('current_user_manage_code')); // 23.06.15 김요한 상세검색 후 창닫기 옵션값 var is_modal_option = ""; var fileSearchPopUpId = ""; ;(function($) { /* * 23.06.08 텍스트색과 텍스트 굵기 변경을 위한 클래스 관리(반영태그 ) * */ callLayoutForAllpage(); function callLayoutForAllpage() { let option_save_location = getViewOptionData_value('그리드 설정 DB 저장',CURRENT_MANAGE_CODE); let localData = ''; layout_option_for_allpage = ''; let result = []; if (option_save_location != undefined && option_save_location != null && option_save_location != '' && option_save_location == 'Y') { //DB에 레이아웃 정보 저장한 경우 localData = localStorage.getItem('LayoutOptionInfo'); if (localData != undefined && localData != null && localData != "") { localData = JSON.parse(localData); //LayoutOptionInfo에서 division이 layout_option_for_allpage인 항목을 찾는다. result = localData.filter( localData => localData.division === 'layout_option_for_allpage' ); } else { $("body").removeClass(); return; //LayoutOptionInfo이 없다면 더 이상 진행할 필요x return } if (result != undefined && result != null && result != "") { let value_data = result[0].value_data; if (value_data != undefined && value_data != null && value_data != "") { value_data = JSON.parse(value_data); layout_option_for_allpage = value_data.option; is_modal_option = isModalOption(value_data.modalOption); if (value_data.option == 'layout_option_1') { $("body").removeClass(); $('body').addClass('layout_option_1'); } else { $("body").removeClass(); } } } else { $("body").removeClass(); } } else { //local에 레이아웃 정보 저장한 경우 localData = localStorage.getItem('layout_option_for_allpage_local'); if (localData != undefined && localData != null && localData != '') { result = JSON.parse(localData); } else { $("body").removeClass(); return; //LayoutOptionInfo이 없다면 더 이상 진행할 필요x return } if (result != undefined && result != null && result != "") { layout_option_for_allpage = result.option; is_modal_option = isModalOption(result.modalOption); if (result.option == 'layout_option_1') { $("body").removeClass(); $('body').addClass('layout_option_1'); } else { $("body").removeClass(); } } else { $("body").removeClass(); } } } var system_name = $('#system_name').val(); // 통합관리자의 경우 관리구분의 변경이 가능하도록 하기 위해 추가함 var operator_info = localStorage.getItem('current_user_info'); if(null != operator_info && undefined != operator_info) { current_user_info = JSON.parse(operator_info); var permission = current_user_info.PERMITION; var access_manage_box = current_user_info.ACCESS_MCOMBO_LEVEL;//23.06.20 성남도서관 요청 일반사용자 등급 관리구분 이동 권한 if(permission == "S" || access_manage_box == "Y") { getComboCodeData("super_user_manage_combo","관리구분","적용안함",CURRENT_MANAGE_CODE,"",true); $('#super_user_manage_combo').css('display','display'); } else { $('#super_user_manage_combo').css('display','none'); } if(system_name == "KLAS") { $('#menu_logo').css("background-image","url(/METIS/img/logo_menu_klas.png)"); $('#support_call_number').text("문의 : 1599-5478"); } else { $('#menu_logo').css("background-image","url(/METIS/img/logo_menu.png)"); $('#support_call_number').text("문의 : 1599-5478"); } //2019.09.17 나병은 - localStorage의 cs_available == true이면 버튼을 보이고, false이면 버튼을 숨김 // if(localStorage.getItem('cs_available') === "Y"){ // $('#cs_button').css("display", "block"); // } else { // $('#cs_button').css("display", "none"); // } if(localStorage.getItem('MenuPrint_Used')=='N'){ //메뉴그리기 2018.04.05 박아름 추가 if(localStorage.getItem('menu_inner') == 'MENU_START'){ }else if(localStorage.getItem('menu_inner') == null ||localStorage.getItem('menu_inner') == 'null'){ Message_callback("메뉴 권한정보를 가져오지 못했습니다.
다시 로그인해 주세요.", LogOut_excute); }else{ $('#menu_inner').empty().append(localStorage.getItem('menu_inner')); } }else{ } } //2020.10.16 우재영 - 달력 쪽 자동완성 없애기 $('.date_picker').attr('autocomplete','off') // $('#profile_portrait').bind("click", function(e) { // localStorage.setItem("debug_mode","Y"); // }); //date range picker 빈 초기값 예제 // 사용법 $('ID').singleDatePicker(start_date); $.fn.singleDatePicker = function() { $(this).on("apply.daterangepicker", function(e, picker) { picker.element.val(picker.startDate.format(picker.locale.format)); }); var date_option = {}; date_option.locale = {format: 'YYYY/MM/DD'}; date_option.singleDatePicker = true; date_option.autoUpdateInput = false; date_option.showDropdowns = true; if(undefined != $(this).data("position")){ date_option.drops = $(this).data("position"); } //date_option.startDate = new Date().format("yyyy-MM-dd"); var selector = this.selector; //숫자와 / 만 입력 가능하게 $(this).keydown(function(e){ return date_check(e); }); //날짜형식체크 $(this).change(function(e){ var chekcDate = $(this).val(); if(chekcDate == "") { return; } return dateForm_check(chekcDate,selector); }); return $(this).daterangepicker(date_option) }; /** * 달력 (날짜+시간) */ $.fn.singleDateTimePicker = function() { $(this).on("apply.daterangepicker", function(e, picker) { picker.element.val(picker.startDate.format(picker.locale.format)); }); $(this).keydown(function(e){ return dateTime_check(e); }); return $(this).daterangepicker({ language : 'ko', singleDatePicker : true, timePicker : true, timePicker24Hour : true, autoUpdateInput : false, showDropdowns : true, locale : { format: 'YYYY/MM/DD HH:mm:ss' } }); }; // singleDatePicker로 초기화후 해당 객체에 날짜를 세팅할대 사용한다. $.fn.setDate = function(date) { if (date == null || date == "") { $(this).data('daterangepicker').setStartDate(new Date().format("yyyy/MM/dd")); $(this).data('daterangepicker').setEndDate(new Date().format("yyyy/MM/dd")); $(this).val(""); } else { $(this).data('daterangepicker').setStartDate(date); $(this).data('daterangepicker').setEndDate(date); $(this).val(date); } }; /** * singleDatePicker로 초기화후 해당 객체에 날짜를 지우고, 달력은 현재 날짜로 세팅할때 사용한다. */ $.fn.clearDate = function() { return this.each(function() { $(this).data('daterangepicker').setStartDate(new Date()); $(this).data('daterangepicker').setEndDate(new Date()); $(this).val(""); }); }; moment.locale('ko'); // 메시지 출력시 기본 포커스를 첫번재 버튼에 위치한다. $('#common_popup_msg').on('shown.bs.modal', function(e){ $('.metis-btn-action').focus(); }); //getCommonSearchLibCode(); var category_main = $('.page_info_category'); var last_category; if(null != category_main && undefined != category_main) { for(var index=0 ; category_main.length > index ; index++) { last_category = category_main[index]; } if(null != last_category && undefined != last_category) { var title = $(document).attr("title",last_category.innerText); last_category.style.cursor = 'pointer'; last_category.onclick = function(){window.location.reload();}; } } // 잠시 떳다 사라지는 메시지 관련 추가 // 2019.04.30 권명호 /*$("#messageNotification").jqxNotification({ width: 200, position: "top-left", opacity: 0.9, notificationOffset:10, autoOpen: false, animationOpenDelay: 800, autoClose: true, autoCloseDelay: 3000, template: "info" });*/ console.log($(".rfid_check_yn")); //RIFD 자동스캔 체크여부 if($(".rfid_check_yn").length == 1){ let rfid_auto_scan_check_yn = localStorage.getItem("rfid_auto_scan_check_yn"); if(rfid_auto_scan_check_yn !=undefined && rfid_auto_scan_check_yn !="undefined" && rfid_auto_scan_check_yn !="" && rfid_auto_scan_check_yn == "Y"){ $($(".rfid_check_yn")[0]).prop("checked",true); }else{ $($(".rfid_check_yn")[0]).prop("checked",false); } } $(".rfid_check_yn").on("change",function(){ if($(this).prop("checked") == true){ localStorage.setItem("rfid_auto_scan_check_yn","Y"); }else{ localStorage.setItem("rfid_auto_scan_check_yn","N"); } }) //스마트 토스트 메시지 객체 기본 세팅 CreateToastElements(); })(jQuery); function category_click() { alert('category_click'); } $(document).ready(function(e) { var current_location = window.location.pathname; if(current_location.indexOf('index.jsp') != -1) { return false; } else { text_onload(); } }); function debug_mode_on() { console.log("디버깅 모드 시작"); localStorage.setItem("debug_mode","Y"); } // 변경 text 박스 색 var text_onload_color = {color : '#C9D9F8'}; var last_focus_object = null; // text박스에 포커스가 왔을때 색상을 변경해서 구분을 짓는다. 포커스를 잃었을때는 원상태로 복귀 시킨다. function text_onload() { var page_input = $("input[type=text]"); for(var index = 0 ; index < page_input.length; index++) { var current = page_input[index]; if((current.id == undefined || current.id == null || current.id == "") && (current.name == undefined || current.name == null || current.name == "")) { continue; } if(current.name == "main_login_user_id") //2018.12.17 - 메인 로그인 id란 제외 { continue; } // current.onfocus = function() // { // // // text_onload_color.oldcolor = this.style.backgroundColor; // // this.style.backgroundColor = text_onload_color.color; // // // last_focus_object = this; // // }; // // current.onblur = function() // { // this.style.backgroundColor = text_onload_color.oldcolor; // }; } } function lastObjFocus() { if(last_focus_object != undefined && last_focus_object != null) { $('#main_number_txt').focus(); // last_focus_object.focus(); } } function onselectDate(dateText, inst){alert(dateText);} //modal 동작시에 배경이 여러 겹으로 겹칠 수 있도록 하는 함수 $(document).on('show.bs.modal', '.modal', function (event) { var zIndex = 1040 + (10 * $('.modal:visible').length); $(this).css('z-index', zIndex); setTimeout(function() { $('.modal-backdrop').not('.modal-stack').css('z-index', zIndex - 1).addClass('modal-stack'); }); }); // 버튼 클릭시 특별한 함수 실행 없이 메시지 내용만 출력하는 함수 function onlyMessage(message,showtime,closeCallback) { var msg_property = { title:"알림", msg:message, btn1_text:"확인", btn1_function:'', showtime:showtime, closecallback:closeCallback, }; let aplUrl = window.location.pathname; let UrlArr = []; UrlArr = aplUrl.split('/'); if((showtime != undefined && showtime != null && showtime !="undefined") && (UrlArr[UrlArr.length - 1] == "LoanMain.jsp") == true){//대출반납 화면에서만 토스트 대체 OpenToastMessage(message,showtime,closeCallback); return; } if(undefined != showtime && null != showtime) { interverMessagePopup(msg_property); } else { openMessagePopup(msg_property); } } // 메시지 내용 출력후 확인 버튼 클릭시 특정 함수 실행하도록 하는 함수 function Message_callback(message, callback) { var msg_property = { "title":"알림", "msg":message, "btn1_text":"확인", "btn1_function":callback, }; openMessagePopup(msg_property); } /** * Confirm 메세지 팝업 * * @param message Confirm 메시지 * @param callback Confirm callback 함수 *
[callback 함수 파라미터] *
1. event : Event *
2. confirm : Confirm 선택 결과, "예" 선택시 true, "아니오" 선택시 false * @param param * @param subMessage 색상 강조된 경고/알림성 메시지 */ function confirmMessage(message, callback, param, subMessage) { openMessagePopup({ title : "알림", msg : message, sub_msg : subMessage, btn1_text : "예", btn1_function: function(e) { callback(e, true, param); }, btn4_text : "아니요", btn4_function: function(e) { callback(e, false, param); } }); } /** * Confirm 선택지 커스텀 팝업 * * @param message Confirm 메시지 * @param callback Confirm callback 함수 *
[callback 함수 파라미터] *
1. event : Event *
2. confirm : Confirm 선택 결과, "예" 선택시 true, "아니오" 선택시 false */ function confirmMessageBtnCustom(message,btn_Y,btn_N, callback, param) { openMessagePopup({ title : "알림", msg : message, btn1_text : btn_Y, btn1_function: function(e) { callback(e, true, param); }, btn4_text : btn_N, btn4_function: function(e) { callback(e, false, param); } }); } // 메시지 popup을 호출할때 사용되는 함수 // 인자로 메시지 popup을 title과 message를 줄 수 있으며 확인 버튼 클릭시 실행할 함수도 줄 수 있다. function openMessagePopup_title(title,msg,callback) { $.ajax({ type: "POST", url: "/METIS/common/message/msg_popup.do", dataType: "html", async : false, data:{"msg" : msg,"title" : title}, success: function(data) { $('#common_popup_msg').html(data); $("#common_popup_msg").modal(); $('#common_popup_msg .metis-btn-action').on('click',callback); } }); } // 메시지 popup의 첫번째 버튼에 포커스 이동 function firstBtnFocus() { $('.metis-btn-action').focus(); } // 안내용 메시지로 잠시 출력됬다 없어지는 메시지 // 단 여러번 호출될 경우 해당 id에 지속적으로 append한다. function interverMessagePopup(property) { /* $("#interber_msg").text(property.msg); $("#messageNotification").jqxNotification("open"); if(property.closecallback != undefined && property.closecallback != null) { property.closecallback(); } */ var id = "intervel_msg_popup"; var interver_ch = $(".intervel_msg_body"); if(interver_ch.text() != "") { interver_ch.append("
" + property.msg); setTimeout("modalClose('"+id+"')", '30000'); // 3000ms(3초) 경과 시, timer_test() 함수 실행 return; } $.ajax({ type : "POST", url : "/METIS/common/message/interver_msg_popup.do", dataType: "html", async : true, data:{ "msg" : property.msg }, success: function(data) { var _$popupDiv = $("#"+id); _$popupDiv.on('shown.bs.modal', function(e){_$popupDiv.css("z-index","2000");$('#'+id+' .btn-s-t01').focus();}); _$popupDiv.on('hidden.bs.modal', function(e) { _$popupDiv.text(""); if(property.closecallback != null && property.closecallback != undefined) { property.closecallback(); } }); _$popupDiv.append(data + "
"); //_$popupDiv.append(data + "
"); _$popupDiv.modal({ backdrop : true, keyboard : false }); // 타임아웃이 정의되어 있으면 해당 시킨만큼만 출력한다. if(property.showtime != null && property.showtime != undefined) { setTimeout("modalClose('"+id+"')", '2000'); // 3000ms(3초) 경과 시, timer_test() 함수 실행 } } }); } //메시지 popup을 호출하면서 버튼명 및 실행후 콜백 함수를 지정할 수 있다. function openMessagePopup(property) { // 문구중 책두레 문구를 책밴드로 일괄 변경한다. var temp_msg = property.msg; property.msg = strReplaceAll(temp_msg,"책두레","책밴드"); // 20.04.24 jiyeong 책밴드 용어 수정 property.msg = strReplaceAll(temp_msg,"책밴드","상호대차"); // 21.03.11 권명호 .을 줄바꿈으로 일괄 수정하여 보기 좋도록 변경 property.msg = strReplaceAll(temp_msg,"\\.",".
"); $.ajax({ type: "POST", url: "/METIS/common/message/msg_popup.do", dataType: "html", async : true, data:{ "msg" : property.msg, "title" : property.title, "btn1_text" : property.btn1_text, "btn2_text" : property.btn2_text, "btn3_text" : property.btn3_text, "btn4_text" : property.btn4_text, "check1_box" : property.check1_box, "check2_box" : property.check2_box, "sub_msg" : property.sub_msg }, success: function(data) { // $('#common_popup_msg').html(data); // $("#common_popup_msg").modal({backdrop : 'static'}); var id = openDivPopupHtml(data,firstBtnFocus); if(property.btn1_function != null) { $('#'+id+' .metis-btn-action').on('click',property.btn1_function); } else { $('#'+id+' .metis-btn-action').css('display','none'); } if(property.btn2_function != null || property.btn2_function != undefined) { $('#'+id+' .metis-btn-action1').on('click',property.btn2_function); } else { $('#'+id+' .metis-btn-action1').css('display','none'); } if(property.btn3_function != null || property.btn3_function != undefined) { $('#'+id+' .metis-btn-action2').on('click',property.btn3_function); } else { $('#'+id+' .metis-btn-action2').css('display','none'); } if(property.btn4_function != null || property.btn4_function != undefined) { $('#'+id+' .metis-btn-close').on('click',property.btn4_function); } else { $('#'+id+' .metis-btn-close').css('display','none'); } if(property.check1_box || property.check2_box) { if(property.check1_box != null || property.check1_box != undefined) { if(property.check1_box_function != null || property.check1_box_function != undefined) { $('#'+id+' #check1_box').on('click',property.check1_box_function); } } else { $('#'+id+' #check1_box_wrapper').css('display','none'); } if(property.check2_box != null || property.check2_box != undefined) { if(property.check2_box_function != null || property.check2_box_function != undefined) { $('#'+id+' #check2_box').on('click',property.check2_box_function); } } else { $('#'+id+' #check2_box_wrapper').css('display','none'); } } else { $('#'+id+' #chkBox').css('display','none'); } if(property.sub_msg == null || property.sub_msg == undefined) { $('#'+id+' #sub_msg').css('display','none'); } $('.metis-btn-action').focus(); // 타임아웃이 정의되어 있으면 해당 시킨만큼만 출력한다. if(property.showtime != null && property.showtime != undefined) { setTimeout("modalClose('"+id+"')", '2000'); // 3000ms(3초) 경과 시, timer_test() 함수 실행 } } }); } function modalClose(inputId) { var id = strReplaceAll(inputId, "#", "" ); $('#' + id).modal("hide"); } // 동기방식으로 데이터를 가지고 온다. function synchronousAjax(url, param) { if ( false == param.hasOwnProperty("result_type") ) { param.result_type = "JSON"; } if ( false == param.hasOwnProperty("operator_manage_code") ) { param.operator_manage_code = localStorage.getItem('current_user_manage_code'); } if ( false == param.hasOwnProperty("operator_id") ) { param.operator_id = localStorage.getItem('current_user_info').ID; } var rtVal = ""; $.ajax({ type: "POST", url: url, dataType: "html", async : false, data:param, success: function(data) { rtVal = data; }, error: function() { rtVal = ""; } }); return rtVal; } // 비동기로 처리한다. function asynchronousAjax(url, param, successCallBack, errorCallback) { if ( false == param.hasOwnProperty("result_type") ) { param.result_type = "JSON"; } if ( false == param.hasOwnProperty("operator_manage_code") ) { param.operator_manage_code = localStorage.getItem('current_user_manage_code'); } if ( false == param.hasOwnProperty("operator_id") ) { param.operator_id = localStorage.getItem('current_user_info').ID; } $.ajax({ type: "POST", url: url, dataType: "html", async : true, data:param, success: function(data) { if (typeof successCallBack === "function") { // callback 이 함수인지를 확인 했으니까 함수호출합니다. callback(options); successCallBack(data); } }, error: function() { if (typeof errorCallback === "function") { errorCallback(); } } }); } function commonIllDataReturnProcess(loankey) { var Param = {}; Param.loan_key = loankey; Param.division = "returnProcess"; Param.sms_send_yn = "N"; Param.apl_lib_code = localStorage.getItem('current_user_lib_code'); // 22.09.07 김길준 회신번호 로컬 설정 여부 확인 후 회신번호 같이 세팅 var pc_Callback_Phone = localStorage.getItem('pc_sms_callback_phone'); if( pc_Callback_Phone !=undefined && pc_Callback_Phone != null && pc_Callback_Phone != ""&& pc_Callback_Phone != "undefined" ){ Param.sms_callback_phone = pc_Callback_Phone; } else{ Param.sms_callback_phone = ""; } // 23.06.22 김길준 pc로컬 설정 도서관 명 세팅 var pc_Lib_name = localStorage.getItem('pc_send_lib_name'); if(pc_Lib_name){ Param.send_lib_name = pc_Lib_name; } var data = synchronousAjax("/METIS/ILLMng/updateTransStateCode.do", Param); if ( data == "" ) { return false; } var obj = JSON.parse(data); var status = ""; if ( obj.status != null ) status = obj.status; if ( status.toUpperCase() == "SUCCESS" ) { return true; } return false; } // 휴관일인지 확인한다. function IsClosedDay(date) { var holiday = localStorage.getItem('excuteSearchHoliday'); if ( null == holiday || 'undefined'== holiday) { return false; } var year = date.getFullYear(); var month = date.getMonth()+1; var day = date.getDate(); var holidayInfo = JSON.parse(holiday); for ( var i = 0 ; i < holidayInfo.length ; i++ ) { if ( year == holidayInfo.YEAR && month == holidayInfo.MONTH ) { var days = holidayInfo.DAYS.split(","); if ( days.indexOf(day) > -1 ) return true; break; } } return false; } // class_code 와 code 를 입력받아 CD_CODE_TBL 정보를 반환한다. function getCD_CODE_TBL(class_code, code) { var code_total = localStorage.getItem('TotalCdCode'); if(null == code_total) { return null; } var jsonData_total = JSON.parse(code_total); for(var i = 0 ; i < jsonData_total.length ; i++) { if(jsonData_total[i].class_code == class_code && jsonData_total[i].code == code) { return jsonData_total[i]; break; } } return null; } //이용자가 활성화 시킨 코드만 받기 function vital_getCdCodeInfo(class_name){ var code_class = localStorage.getItem('TotalCdClassCode'); var code_total = localStorage.getItem('TotalCdCode'); var mn_user_code = localStorage.getItem('MnUserCode'); var dummy_data = []; if(null == code_class || null == code_total) { console.log("localstorage null"); return value_code; } var jsonData_class = JSON.parse(code_class); var jsonData_total = JSON.parse(code_total); var jsonData_user_code = JSON.parse(mn_user_code); var current_class = ""; var current_desc = ""; for(var i = 0 ; i < jsonData_class.length ; i++) { if(jsonData_class[i].class_name == class_name) { current_class = jsonData_class[i].class_code; break; } } for(var i = 0 ; i < jsonData_total.length ; i++) { if(jsonData_total[i].class_code == current_class) { for(let j = 0 ; j< jsonData_user_code.length ; j++){ if(jsonData_total[i].rec_key == jsonData_user_code[j].code_key && jsonData_user_code[j].active == "Y"){ dummy_data.push(jsonData_total[i]); } } } } console.log(dummy_data); } // class_name를 전달받아 전체 코드정보를 object형태로 전달한다. function getCdCodeInfo(class_name) { var code_class = localStorage.getItem('TotalCdClassCode'); var code_total = localStorage.getItem('TotalCdCode'); var dummy_data = []; if(null == code_class || null == code_total) { console.log("localstorage null"); return value_code; } var jsonData_class = JSON.parse(code_class); var jsonData_total = JSON.parse(code_total); var current_class = ""; var current_desc = ""; for(var i = 0 ; i < jsonData_class.length ; i++) { if(jsonData_class[i].class_name == class_name) { current_class = jsonData_class[i].class_code; break; } } for(var i = 0 ; i < jsonData_total.length ; i++) { if(jsonData_total[i].class_code == current_class) { dummy_data.push(jsonData_total[i]); } } return dummy_data; } // class_name와 값을 전달받아 설명값으로 리턴해주는 공통 함수 ex) 관리구분 MA->MA도서관 function getdesc(class_name, value_code) { var code_class = localStorage.getItem('TotalCdClassCode'); var code_total = localStorage.getItem('TotalCdCode'); if(null == code_class || null == code_total) { console.log("localstorage null"); return value_code; } var jsonData_class = JSON.parse(code_class); var jsonData_total = JSON.parse(code_total); var current_class = ""; var current_desc = ""; for(var i = 0 ; i < jsonData_class.length ; i++) { if(jsonData_class[i].class_name == class_name) { current_class = jsonData_class[i].class_code; break; } } for(var i = 0 ; i < jsonData_total.length ; i++) { if(jsonData_total[i].class_code == current_class && jsonData_total[i].code == value_code) { current_desc = jsonData_total[i].description; break; } } return current_desc; } //class_name와 값을 전달받아 설명값으로 리턴해주는 공통 함수 function getDescForClass_no(class_no, value_code) { var code_total = localStorage.getItem('TotalCdCode'); if(null == code_total) { console.log("localstorage null"); return value_code; } var jsonData_total = JSON.parse(code_total); var current_class = class_no; var current_desc = ""; for(var i = 0 ; i < jsonData_total.length ; i++) { if(jsonData_total[i].class_code == current_class && jsonData_total[i].code == value_code) { current_desc = jsonData_total[i].description; break; } } return current_desc; } //esl_manage_tbl의 정보를 추출한다. function getEslData(class_alias, manage_code) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); return result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.manage_code == manage_code; }); } //esl_manage_tbl의 정보를 추출한다. //class_alias, manage_code 총 2개를 인자로함 function getEslOneValueData_2(class_alias, manage_code) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); return result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.manage_code == manage_code; }); if ( result == null || result.length <= 0 ) return ""; else { return result[0].value_1; } } //esl_manage_tbl의 정보를 추출한다. // class_alias, value_name, manage_code 총 3개를 인자로함 //예시 페이지 : work_script/ReservationManage/ResvCommon/OnlineOff.js function getEslOneValueData_3(class_alias, value_name, manage_code) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); var result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.value_name == value_name && e.manage_code == manage_code; }); if ( result == null || result.length <= 0 ) return ""; else { return result[0].value_1; } } //esl_manage_tbl의 정보를 추출한다. //class_alias, value_name, manage_code, compareValue 총4개를 인자로함 // compareValue 의 값과 value_1 이 같으면 true 아니면 false //예시 페이지 : work_script/ReservationManage/ResvCommon/OnlineOff.js function getEslOneBoolean(class_alias, value_name, manage_code, compareValue) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); var result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.value_name == value_name && e.manage_code == manage_code; }); if ( result.length > 0 ) { var valueOne = result[0].value_1; if ( valueOne.toUpperCase() == compareValue.toUpperCase() ) return true; } else { return false; } return false; } //esl_manage_tbl의 정보를 추출한다. //value_name, compareValue 총2개를 인자로함 //compareValue 의 값과 value_1 이 같으면 true 아니면 false //예시 페이지 : work_script/ReservationManage/ResvCommon/OnlineOff.js function getEslOneBooleanByValueName(value_name, compareValue) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); var result = $.grep(jsonData_localInfo, function(e) { return e.value_name == value_name; }); if ( result.length > 0 ) { var valueOne = result[0].value_1; if ( valueOne.toUpperCase() == compareValue.toUpperCase() ) return true; } else { return false; } return false; } //esl_manage_tbl의 정보를 추출한다. //class_alias, value_name 총2개를 인자로함 //class_alias와 value_name에 해당하는 모든 데이터를 추출해서 전달한다. function getEslAliasValueName_all(class_alias, value_name) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); var result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.value_name == value_name }); console.dir(result); if ( result.length > 0 ) { return result; } else { return null; } return false; } //esl_manage_tbl의 정보를 추출한다. //class_alias, value_name, manage_code, compareValue 총4개를 인자로함 //compareValue 의 값과 value_1 이 같으면 true 아니면 false //예시 페이지 : work_script/ReservationManage/ResvCommon/OnlineOff.js function getEslOneBooleanNotValueName(class_alias, manage_code, compareValue) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); var result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.manage_code == manage_code; }); if ( result.length > 0 ) { var valueOne = result[0].value_1; if ( valueOne.toUpperCase() == compareValue.toUpperCase() ) return true; } else { return false; } return false; } //esl_manage_tbl의 정보를 추출한다. //class_alias, value_name, compareValue 총4개를 인자로함 //compareValue 의 값과 value_1 이 같으면 true 아니면 false //예시 페이지 : work_script/ReservationManage/ResvCommon/OnlineOff.js function getEslOneBooleanNonManageCode(class_alias, value_name, compareValue) { var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); var result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.value_name == value_name; }); if ( result.length > 0 ) { var valueOne = result[0].value_1; if ( valueOne.toUpperCase() == compareValue.toUpperCase() ) return true; } else { return false; } return false; } //esl_manage_tbl의 정보를 추출한다.(value_name) //class_alias, manage_code 총 2개를 인자로함 //예시 페이지 : work_script/ReservationManage/ResvCommon/OnlineOff.js function getEslOneValueNameData(class_alias, manage_code) { var returnValue = null; var localInfo = localStorage.getItem('TotalEslList'); var jsonData_localInfo = JSON.parse(localInfo); var result = $.grep(jsonData_localInfo, function(e) { return e.class_alias == class_alias && e.manage_code == manage_code; }); if ( result.length > 0 ) { returnValue = result[0].value_name; } return returnValue; } //코드를 조회해 콤보박스를 구성한다. // id : 구성할 콤보의 아이디, name : class_name(한글), not_code : 코드에 있지만 제거할 코드 1개 이상인 경우 ,로 연결, select_code : 기본 선택 항목 // code_only : 코드값으로 콤보박스를 구성하는 경우 true를 입력한다. // 예시 페이지 : work_script/Loan/Loan_main.js function getComboCodeData(id, name, not_code, select_code, code_only, active) { getComboCodeDataEl($("#"+id), name, not_code, select_code, code_only, active); } //============================= 보존서고 관련 시작 ============================= function getCoPsvComboCodeData(id, name, not_code, select_code, code_only, active) { getComboCodeDataEl($("#"+id), name, not_code, select_code, code_only, active); } //============================= 보존서고 관련 종료 ============================= /** * 해당 코드클래스의 기본 코드값을 리턴한다. * * @param name class_name(한글) * @returns */ function getCodeDataDefault(name) { var code_class = localStorage.getItem('TotalCdClassCode'); var code_total = localStorage.getItem('TotalCdCode'); var mn_user_code = localStorage.getItem('MnUserCode'); var temp_obj = { "code":"", "code_key":"", "desc":"" }; var combo_array = []; if(null == code_class || null == code_total) { console.log("localstorage null"); return value_code; } var jsonData_class = JSON.parse(code_class); var jsonData_total = JSON.parse(code_total); var jsonData_user_code = JSON.parse(mn_user_code); var current_class = ""; var current_desc = ""; var not_flag = false; for(var i = 0 ; i < jsonData_class.length ; i++) { if(jsonData_class[i].class_name == name) { current_class = jsonData_class[i].class_code; break; } } for(var i = 0 ; i < jsonData_total.length ; i++) { if(jsonData_total[i].class_code == current_class) { temp_obj = Object.create(temp_obj); temp_obj["code"] = jsonData_total[i].code; temp_obj["desc"] = jsonData_total[i].description; temp_obj["code_key"] = jsonData_total[i].rec_key; combo_array.push(temp_obj); } } var flag = false; // 기본 객체를 찾는다. for(var i = 0 ; i < combo_array.length ; i++) { for(var j = 0 ; j < jsonData_user_code.length ; j++) { if((combo_array[i].code_key == jsonData_user_code[j].code_key) && "Y" == jsonData_user_code[j].default_value) { // select_code = combo_array[i].code; // break; return combo_array[i]; } } } var return_temp = {}; return_temp["code"] = ""; return_temp["desc"] = ""; return_temp["code_key"] = ""; return return_temp; } /** * 코드를 조회해 콤보박스를 구성
* - 'element id'를 받아서 처리하는 함수(getComboCodeData)를 id 대신 obj를 받아서 처리하는 함수 * * @param $el 구성할 콤보의 jQuery Obj * @param name class_name(한글) * @param not_code 코드에 있지만 제거할 코드 1개 이상인 경우 ,로 연결 * @param select_code 기본 선택 항목 * @param code_only 코드 설명값이 아닌 코드값으로 콤보박스를 구성해야 할 때 true를 받는다. * @returns */ function getComboCodeDataEl($el, name, not_code, select_code, code_only, active) { $el.empty(); var code_class = localStorage.getItem('TotalCdClassCode'); var code_total = localStorage.getItem('TotalCdCode'); var mn_user_code = localStorage.getItem('MnUserCode'); var not_code_array = []; //2018.03.09 강예슬 추가 - not_code = ""일 때 제외시키지않도록 if (not_code == ""){ not_code_array = []; //not_code_array.push("note_code_empty"); }else if(not_code != undefined){ not_code_array = not_code.split(","); } /* if(not_code != undefined){ not_code_array = not_code.split(","); } */ var temp_obj = { "code":"", "code_key":"", "desc":"" }; var combo_array = []; if(null == code_class || null == code_total) { console.log("localstorage null"); return value_code; } var jsonData_class = JSON.parse(code_class); var jsonData_total = JSON.parse(code_total); var jsonData_user_code = JSON.parse(mn_user_code); var current_class = ""; var current_desc = ""; var not_flag = false; for(var i = 0 ; i < jsonData_class.length ; i++) { if(jsonData_class[i].class_name == name) { current_class = jsonData_class[i].class_code; break; } } for(var i = 0 ; i < jsonData_total.length ; i++) { not_flag = false; if(jsonData_total[i].class_code == current_class) { //console.dir(jsonData_total[i]); for(var j = 0 ; j < not_code_array.length ; j++) { // 제외될 코드라면 그냥 넘어간다. if(jsonData_total[i].code == not_code_array[j] || jsonData_total[i].description == not_code_array[j]) { not_flag = true; break; } } // 제외코드가 거짓인 경우만 포함시킨다. if(not_flag == false) { temp_obj = Object.create(temp_obj); temp_obj["code"] = jsonData_total[i].code.trim(); temp_obj["desc"] = jsonData_total[i].description.trim(); temp_obj["code_key"] = jsonData_total[i].rec_key; combo_array.push(temp_obj); } } } // 관리구분 표시시 정렬 여부 옵션(기본 N) // Y인경우는 가나다순 정렬 if(name == "관리구분"){ if(undefined != MANAGE_CODE_SORT_YN && MANAGE_CODE_SORT_YN == 'Y'){ // 설명값기준 가나다순 정렬 옵션 combo_array.sort(function(a, b) { const upperCaseA = a.desc; const upperCaseB = b.desc; if(upperCaseA == "적용안함") return 1; if(upperCaseB == "적용안함") return 1; if(upperCaseA > upperCaseB) return 1; if(upperCaseA < upperCaseB) return -1; if(upperCaseA === upperCaseB) return 0; }); } } let none_value; // 24.06.26 select_code가 특정 코드로 하드코딩된 경우(예시: GM) // 우선순위: 1.사용자가 기본값으로 세팅한 코드 2.하드코딩한 select_code if (select_code != undefined && select_code != null) { if (select_code != "적용안함" && select_code != "" && select_code != " " && select_code != " ") { none_value = select_code; // 일반부호코드 세팅 없는경우 대체 값 select_code = null; // 일반부호코드 설정 값으로 세팅을 위함 } } var select_code_flag = false; // 기본 선택값을 전달받은 경우와 아닌경우를 구분하며 전달받은값이 없는경우 코드 패턴에 의해 기본값을 선택한다. if(null == select_code || "" == select_code || undefined == select_code) { select_code = ""; for(var i = 0 ; i < combo_array.length ; i++) { for(var j = 0 ; j < jsonData_user_code.length ; j++) { if((combo_array[i].code_key == jsonData_user_code[j].code_key) && "Y" == jsonData_user_code[j].default_value) { select_code = combo_array[i].code; select_code_flag = true; // 설명값이 동일한 코드가 존재하면 문제가 발생하여 코드값이 동일한 값을 기본으로 설정하도록 변경 // 2019/02/15 권명호 //select_code = combo_array[i].desc; break; } } } } else { var temp_select_code = strReplaceAll(select_code, " ", "" ); // 공백으로만 초기값을 선택한 경우 적용안함을 선택하도록 수정 if(temp_select_code == "") { select_code = '적용안함'; } } //일반부호 관리에서 기본값 설정이 없을 경우 기존 고정값으로 돌리기위한 로직 if(!select_code){ var temp_select_code = strReplaceAll(none_value, " ", "" ); // 공백으로만 초기값을 선택한 경우 적용안함을 선택하도록 수정 if(temp_select_code == "") { select_code = '적용안함'; }else{ select_code = temp_select_code; } } // 적용안함을 공백 두개로 한경우 if(select_code == "" && select_code_flag == false) { // 모든 코드가 제거된 상태의 경우 오류가 발생해서 추가함 // 23/08/24 권명호 if(combo_array.length > 0){ select_code = combo_array[0].code; }else{ return; } } for(var i = 0 ; i < combo_array.length ; i++) { var current_code = combo_array[i].code; var current_desc = combo_array[i].desc; // 코드값 | 설명값 형태로 표시하기 위한 변수 var print_desc = ""; var addFlag = true; if(active == undefined || active == null || active == false) { for(var j = 0 ; j < jsonData_user_code.length ; j++) { if(combo_array[i].code_key == jsonData_user_code[j].code_key) { // console.log("선택["+jsonData_user_code[j].code_key+"]"); if("N" == jsonData_user_code[j].active) { // console.dir(jsonData_user_code[j]); addFlag = false; break; } } } } if(addFlag == false) { continue; } if(undefined != code_only && true == code_only) { current_desc = combo_array[i].code; } if("" == strReplaceAll(current_code, " ", "" )) { print_desc = current_desc; } else { print_desc = current_code + " | " +current_desc; } if(select_code == current_code || select_code == current_desc) { $el.append(""); } else { $el.append(""); } } $('#super_user_manage_combo').val(CURRENT_MANAGE_CODE);//관리구분 이동 셀렉트 박스에 경우 현재 관 기준으로 재정의가 필요해서 추가 - 김길준 작업 } //이용자가 활성화 시킨 코드만 받기 function vital_getCdCodeInfo(class_name){ var code_class = localStorage.getItem('TotalCdClassCode'); var code_total = localStorage.getItem('TotalCdCode'); var mn_user_code = localStorage.getItem('MnUserCode'); var dummy_data = []; if(null == code_class || null == code_total) { console.log("localstorage null"); return value_code; } var jsonData_class = JSON.parse(code_class); var jsonData_total = JSON.parse(code_total); var jsonData_user_code = JSON.parse(mn_user_code); var current_class = ""; var current_desc = ""; var combo_array = []; for(var i = 0 ; i < jsonData_class.length ; i++) { if(jsonData_class[i].class_name == class_name) { current_class = jsonData_class[i].class_code; break; } } for(var i = 0 ; i < jsonData_total.length ; i++){ if(jsonData_total[i].class_code == current_class){ combo_array.push(jsonData_total[i]); } } for(var i = 0 ; i < combo_array.length ; i++){ var addFlag = true; for(var j = 0 ; j < jsonData_user_code.length ; j++){ if(combo_array[i].rec_key == jsonData_user_code[j].code_key) { if("N" == jsonData_user_code[j].active) { addFlag = false; break; } } } if(addFlag == false){ continue; } dummy_data.push(combo_array[i]) } return dummy_data; } // 현재 로그인한 사용자의 manage_code를 추출한다. function getManageCode() { return localStorage.getItem('current_user_manage_code') } /** 회원구분(0:정회원, 1:비회원, 2:준회원). **/ // 회원구분 코드값을 문자로 변환해 주는 함수 // work_script/ReservationManage/ResvCommon/OnlineOff.js function getMember_class_desc(user_class) { var return_data = ""; if(user_class == "0") { return_data = "정회원"; } else if(user_class == "1" ) { return_data = "비회원"; } else if(user_class == "2" ) { return_data = "준회원"; } else { console.log("알수없는 구분값 ["+user_class+"]"); return_data = user_class; } return return_data; } function getUser_class_desc(user_class) { var return_data = ""; if(user_class == "0") { return_data = "정상회원"; } else if(user_class == "1") { return_data = "대출정지"; } else if(user_class == "2") { return_data = "제적회원"; } else if(user_class == "3") { return_data = "탈퇴회원"; } else { console.log("알수없는 구분값 ["+user_class+"]"); return_data = user_class; } return return_data; } // 대출 상태 구분값 번역 function getLoan_status_code_desc(code) { if( code == ""){return "";} if( code == "0"){return "대출";} if( code == "1"){return "반납";} if( code == "2"){return "반납연기";} if( code == "3"){return "예약";} if( code == "4"){return "예약취소";} if( code == "5"){return "무인반납중";} if( code == "6"){return "분관반납중";} if( code == "7"){return "타관반납중";} if( code == "L"){return "상호대차대출";} if( code == "R"){return "상호대차반납";} // 20.04.24 jiyeong 책밴드 상호대차로 변경 if( code == "D"){return "상호대차반납연기";} if( code == "O"){return "상호대차예약대출";} return code; } // 대출형태 번역 function getLoan_type_code_desc(code) { if( code == "0"){return "일반";} if( code == "1"){return "특별";} if( code == "2"){return "관내";} if( code == "4"){return "장기";} if( code == "A"){return "전집";} if( code == "3"){return "무인";} if( code == "5"){return "바로대출";} if( code == "D"){return "책배달";} //23.08.16 추가 return code; } //반납형태 번역 function getReturn_type_code_desc(code) { if( code == "0"){return "일반";} if( code == "1"){return "일괄";} if( code == "2"){return "소급";} if( code == "3"){return "무인";} return code; } /** 책두레 진행상태 **/ //책두레 진행상태를 코드값이에 변환하는 함수 // divison : REQ, GIVE 에 따라서 이름이 조금씩 다르게 표기횜 // function getIll_State(state,loan_status, division) { var return_data = ""; if(state == "0001") { return_data = "신청자료"; } else if(state == "0002") { if(division != null && division != undefined) { if(division == 'REQ') { return_data = "요청한자료"; } else if(division == 'GIVE') { return_data = "요청된자료"; } } else { return_data = "요청된자료"; } } else if(state == "0004") { if(division != null && division != undefined) { if(division == 'REQ') { return_data = "입수대상자료"; } else if(division == 'GIVE') { return_data = "발송한자료"; } } else { return_data = "발송된자료"; } } else if(state == "0014") { return_data = "입수완료자료"; //2018.07.03 강예슬 추가, LOAN_STATUS = "반납완료" or "기한초과" 이면 복귀대상자료로 변경 // 2019.03.15 권명호 주석처리, 파라미터를 하나더 추가하면서 주석처리 함 // if(arguments.length == 2) //매개변수가 2개이면 // { // if((undefined != loan_status && "" != loan_status && null != loan_status) // && ("반납완료" == loan_status || "기한초과" == loan_status )) // { // return_data = "복귀대상자료"; // } // } if((undefined != loan_status && "" != loan_status && null != loan_status) && ("반납완료" == loan_status || "기한초과" == loan_status )) { return_data = "복귀대상자료"; } } else if(state == "0008") { return_data = "복귀중자료"; } else if(state == "0009") { return_data = "완료된자료"; } else if(state == "0011") { return_data = "발송거절된자료"; if(division != null && division != undefined) { if(division == 'REQ') { return_data = "발송거절된자료"; } else if(division == 'GIVE') { return_data = "발송거절한자료"; } } else { return_data = "발송거절된자료"; } } else if(state == "0012") { return_data = "요청거절된자료"; } else if(state == "0016") { return_data = "신청취소된자료"; } else { console.log("알수없는 구분값 ["+state+"]"); return_data = state; } return return_data; } // =========================== 보존서고 관련 시작 =========================== function getCoPsv_State(state,loan_status, division) { var return_data = ""; if(state == "0001") { return_data = "신청자료"; } else if(state == "0002") { if(division != null && division != undefined) { if(division == 'REQ') { return_data = "요청한자료"; } else if(division == 'GIVE') { return_data = "요청된자료"; } } else { return_data = "요청된자료"; } } else if(state == "0004") { if(division != null && division != undefined) { if(division == 'REQ') { return_data = "입수대상자료"; } else if(division == 'GIVE') { return_data = "발송한자료"; } } else { return_data = "발송된자료"; } } else if(state == "0014") { return_data = "입수완료자료"; if((undefined != loan_status && "" != loan_status && null != loan_status) && ("반납완료" == loan_status || "기한초과" == loan_status )) { return_data = "복귀대상자료"; // 24.08.20 최연희 - 자관보존서고 > 복귀대상자료와 타관반납자료 분리 } else if(loan_status === "타관반납") { return_data = "타관반납자료"; } } else if(state == "0008") { return_data = "복귀중자료"; } else if(state == "0009") { return_data = "완료된자료"; } else if(state == "0011") { return_data = "발송거절된자료"; if(division != null && division != undefined) { if(division == 'REQ') { return_data = "발송거절된자료"; } else if(division == 'GIVE') { return_data = "발송거절한자료"; } } else { return_data = "발송거절된자료"; } } else if(state == "0012") { return_data = "요청거절된자료"; } else if(state == "0016") { return_data = "신청취소된자료"; } else { console.log("알수없는 구분값 ["+state+"]"); return_data = state; } return return_data; } // =========================== 보존서고 관련 종료 =========================== //자료상태 번역 function getWorkingStatusCombo(id, select_code) { var return_data = ""; // 20.04.24 jiyeong 책밴드 상호대차로 변경 var working_status_code_list = new Array("BOT111O","BOT112O","BOT2120","BOA111N","BOA112N","BOA113O","BOA114O","BOA211O","BOA212O","BOR111N","BOR112N","BOR113O","BOC111O","BOC112O","BOC113N","BOC114O","BOL111O","BOL112N","BOL211O","BOL212O","BOL213O","BOL214O","BOL215O","BOL216O","BOL217O","BOL218O","BOL113O","BOL114O","BOL115O","BOL116O","BOL252N","BOC211O","BOL411O","BOL511O","SEA111N","SEA112N","SEA211N","SEA212N","SEB111N","SEB112N","SEB113N","SEB114N","SEL111O","SEL112N","SEL113O","SER111N","SER112N","SER113O","SEC111N","SEC112O","SEL211O","SEL212N","SEL213O","SEL214O","SEL215O","SEL216O","SEL217O","SEL311O","SEL312O","SEL313O","SEL314O","SEL315O","SEL316O","SEL317O","SEL411O"); var working_status_desc_list = new Array("단행기초자료","단행반입자료","정리복본추기자료","단행구입대상자료","단행주문자료(검수대상자료)","단행미납품자료","단행(구입)인계대상자료","단행기증접수자료(인계대상자료)","단행기증부당자료","단행등록인계자료","단행등록자료(정리인계대상자료)","단행가원부번호부여자료","단행복본조사대상자료","단행분류대상자료","단행정리대상자료","단행열람인계대상자료(정리완료자료)","단행열람인계자료(배가대상자료)","비치자료","관외대출자료","관내대출자료","특별대출자료","긴급대출자료","배달자료","무인반납자료","장기대출자료","상호대차대출자료","수리제본자료","파손자료","제적자료","재정리자료","분실자료","긴급정리대상자료","단행상호대차업무진행자료","통합도서타관반납","구입입수자료(인계대상자료)","구입결호자료","기증입수자료(인계대상자료)","기증결호자료","제본인계자료","제본결정자료","제본발주자료","제본검수자료(등록인계대상자료)","실시간인계자료(실시간배가대상자료)","실시간배가자료","실시간폐기자료","등록인계자료","등록자료(정리인계대상자료)","가원부번호부여자료","정리대상자료","열람인계대상자료(정리완료자료)","열람인계자료(배가대상자료)","배가자료(소장자료)","수리제본자료","파손자료","제적자료","분실자료","재정리자료","관외대출자료","관내대출자료","특별대출자료","긴급대출자료","배달자료","무인반납","장기대출자료","상호대차자료"); var combo_obj = $('#' + id); for(var index in working_status_code_list) { var current_code = working_status_code_list[index]; var current_desc = working_status_desc_list[index]; if(select_code == current_code || select_code == current_desc) { combo_obj.append(""); } else { combo_obj.append(""); } } // var idx = working_status_code_list.indexOf(status_code); // if ( idx >= 0 ) { // return_data = working_status_desc_list[idx]; // } // return return_data; } // 자료상태 번역 function getWorkingStatusDesc(status_code) { var return_data = ""; var working_status_code_list = new Array("BOT111O","BOT112O","BOT2120","BOA111N","BOA112N","BOA113O","BOA114O","BOA211O","BOA212O","BOR111N","BOR112N","BOR113O","BOC111O","BOC112O","BOC113N","BOC114O","BOL111O","BOL112N","BOL211O","BOL212O","BOL213O","BOL214O","BOL215O","BOL216O","BOL217O","BOL218O","BOL113O","BOL114O","BOL115O","BOL116O","BOL252N","BOC211O","BOL411O","BOL511O","BOL611O","SEA111N","SEA112N","SEA211N","SEA212N","SEB111N","SEB112N","SEB113N","SEB114N","SEL111O","SEL112N","SEL113O","SER111N","SER112N","SER113O","SEC111N","SEC112O","SEL211O","SEL212N","SEL213O","SEL214O","SEL215O","SEL216O","SEL217O","SEL311O","SEL312O","SEL313O","SEL314O","SEL315O","SEL316O","SEL317O","SEL411O", "BOL319O"); var working_status_desc_list = new Array("단행기초자료","단행반입자료","정리복본추기자료","단행구입대상자료","단행주문자료(검수대상자료)","단행미납품자료","단행(구입)인계대상자료","단행기증접수자료(인계대상자료)","단행기증부당자료","단행등록인계자료","단행등록자료(정리인계대상자료)","단행가원부번호부여자료","단행복본조사대상자료","단행분류대상자료","단행정리대상자료","단행열람인계대상자료(정리완료자료)","단행열람인계자료(배가대상자료)","비치자료","관외대출자료","관내대출자료","특별대출자료","긴급대출자료","배달자료","무인반납자료","장기대출자료","상호대차대출자료","수리제본자료","파손자료","제적자료","재정리자료","분실자료","긴급정리대상자료","단행상호대차업무진행자료","통합도서타관반납","통합도서타관대출","구입입수자료(인계대상자료)","구입결호자료","기증입수자료(인계대상자료)","기증결호자료","제본인계자료","제본결정자료","제본발주자료","제본검수자료(등록인계대상자료)","실시간인계자료(실시간배가대상자료)","실시간배가자료","실시간폐기자료","등록인계자료","등록자료(정리인계대상자료)","가원부번호부여자료","정리대상자료","열람인계대상자료(정리완료자료)","열람인계자료(배가대상자료)","배가자료(소장자료)","수리제본자료","파손자료","제적자료","분실자료","재정리자료","관외대출자료","관내대출자료","특별대출자료","긴급대출자료","배달자료","무인반납","장기대출자료","상호대차자료","단행보존서고업무진행자료"); var idx = working_status_code_list.indexOf(status_code); if ( idx >= 0 ) { return_data = working_status_desc_list[idx]; } return return_data; } // 자료상태 설명을 코드로 변경 //자료상태 번역 function getWorkingStatusDescToCode(status_desc) { var return_data = ""; var working_status_code_list = new Array("BOT111O","BOT112O","BOT2120","BOA111N","BOA112N","BOA113O","BOA114O","BOA211O","BOA212O","BOR111N","BOR112N","BOR113O","BOC111O","BOC112O","BOC113N","BOC114O","BOL111O","BOL112N","BOL211O","BOL212O","BOL213O","BOL214O","BOL215O","BOL216O","BOL217O","BOL218O","BOL113O","BOL114O","BOL115O","BOL116O","BOL252N","BOC211O","BOL411O","BOL511O","BOL611O","SEA111N","SEA112N","SEA211N","SEA212N","SEB111N","SEB112N","SEB113N","SEB114N","SEL111O","SEL112N","SEL113O","SER111N","SER112N","SER113O","SEC111N","SEC112O","SEL211O","SEL212N","SEL213O","SEL214O","SEL215O","SEL216O","SEL217O","SEL311O","SEL312O","SEL313O","SEL314O","SEL315O","SEL316O","SEL317O","SEL411O","BOL319O"); var working_status_desc_list = new Array("단행기초자료","단행반입자료","정리복본추기자료","단행구입대상자료","단행주문자료(검수대상자료)","단행미납품자료","단행(구입)인계대상자료","단행기증접수자료(인계대상자료)","단행기증부당자료","단행등록인계자료","단행등록자료(정리인계대상자료)","단행가원부번호부여자료","단행복본조사대상자료","단행분류대상자료","단행정리대상자료","단행열람인계대상자료(정리완료자료)","단행열람인계자료(배가대상자료)","비치자료","관외대출자료","관내대출자료","특별대출자료","긴급대출자료","배달자료","무인반납자료","장기대출자료","상호대차대출자료","수리제본자료","파손자료","제적자료","재정리자료","분실자료","긴급정리대상자료","단행상호대차업무진행자료","통합도서타관반납","통합도서타관대출","구입입수자료(인계대상자료)","구입결호자료","기증입수자료(인계대상자료)","기증결호자료","제본인계자료","제본결정자료","제본발주자료","제본검수자료(등록인계대상자료)","실시간인계자료(실시간배가대상자료)","실시간배가자료","실시간폐기자료","등록인계자료","등록자료(정리인계대상자료)","가원부번호부여자료","정리대상자료","열람인계대상자료(정리완료자료)","열람인계자료(배가대상자료)","배가자료(소장자료)","수리제본자료","파손자료","제적자료","분실자료","재정리자료","관외대출자료","관내대출자료","특별대출자료","긴급대출자료","배달자료","무인반납","장기대출자료","상호대차자료","단행보존서고업무진행자료"); var idx = working_status_desc_list.indexOf(status_desc); if ( idx >= 0 ) { return_data = working_status_code_list[idx]; } return return_data; } function LogOut() { confirmMessage("로그아웃 하시겠습니까?",LogOut_excute); } // 로그 아웃 서비스 function LogOut_excute(e, flag, msg) { if(flag == false) { return; } else { $.ajax({ type: "POST", url: "/METIS/Login/LogOutExcute.do", dataType: "html", async : true, data:{ "result_type" : "JSON" }, success: function(data) { var obj = JSON.parse(data); if(undefined != msg && "" != msg) { // Message_callback(msg,move_login); alert(msg); move_login(); } else { Message_callback(obj.statusDescription,move_login); } } }); } } // 로그인 페이지로 이동 function move_login() { window.location = "/METIS/index.jsp" } String.prototype.string = function(len){var s = '', i = 0; while (i++ < len) { s += this; } return s;}; String.prototype.zf = function(len){return "0".string(len - this.length) + this;}; Number.prototype.zf = function(len){return this.toString().zf(len);}; Date.prototype.format = function(f) { if (!this.valueOf()) return " "; var weekName = ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"]; var d = this; return f.replace(/(yyyy|yy|MM|dd|E|hh|mm|ss|a\/p)/gi, function($1) { switch ($1) { case "yyyy": return d.getFullYear(); case "yy": return (d.getFullYear() % 1000).zf(2); case "MM": return (d.getMonth() + 1).zf(2); case "dd": return d.getDate().zf(2); case "E": return weekName[d.getDay()]; case "HH": return d.getHours().zf(2); case "hh": return ((h = d.getHours() % 12) ? h : 12).zf(2); case "mm": return d.getMinutes().zf(2); case "ss": return d.getSeconds().zf(2); case "a/p": return d.getHours() < 12 ? "오전" : "오후"; default: return $1; } }); }; // 사용 예제 //2011년 09월 11일 오후 03시 45분 42초 //console.log(new Date().format("yyyy년 MM월 dd일 a/p hh시 mm분 ss초")); //2011-09-11 //console.log(new Date().format("yyyy-MM-dd")); //'11 09.11 //console.log(new Date().format("'yy MM.dd")); //2011-09-11 일요일 //console.log(new Date().format("yyyy-MM-dd E")); //현재년도 : 2011 //console.log("현재년도 : " + new Date().format("yyyy")); //값이 공백인 경우 0을 리턴한다. function isNullZero(data) { if(data == null || "" == data) { return "0"; } else { return data; } } // 날짜를 yyyyMMdd형태로 리턴한다. 이는 시분초까지 포함된 날짜정보를 앞에서 10자리만 잘라 리턴한다. function yyyyMMdd(date_data) { if(null != date_data && "" != date_data && date_data.length >= 10) { date_data = date_data.substring(0,10); return date_data; } else { return date_data; } } // 문자열의 바이트수 체크 메인 함수 function getByteLength(str) { console.log("getByteLength["+str+"]"); if (str == null || str.length == 0) { return 0; } var size = 0; for ( var i = 0; i < str.length; i++) { size += this.charByteSize(str.charAt(i)); } return size; } // 1글자에 대한 바이트수 체크 관련 함수 function charByteSize(ch) { if (ch == null || ch.length == 0) { return 0; } var charCode = ch.charCodeAt(0); //console.log("charCode["+charCode+"]"); if (charCode <= 0x00007F) { return 1; } else if (charCode <= 0x0007FF) { return 2; } else if (charCode <= 0x00FFFF) { return 2; } else { return 4; } } // 기능 준비중이라는 메시지 출력 function continueMsg() { onlyMessage("현재 기능 준비중 입니다."); return; } function getNextDivPopupId() { return getNextControlIdWithPrepix("common_popup_"); /* var idx = 1; while (true) { if ($("#common_popup_"+idx).length == 0) { return "common_popup_"+idx; } else { idx++; } } */ } function getNextControlIdWithPrepix(prepix) { prepix = typeof prepix !== 'undefined' ? prepix : "common_popup_"; var idx = 1; while (true) { if ($("#" + prepix+idx).length == 0) { return prepix+idx; } else { idx++; } } } function keypressDiv(event) { if ( event.keyCode == 27 ) { event.preventDefault(); event.stopPropagation(); event.stopImmediatePropagation(); event.returnValue = false; event.keyCode = 0; return false; } } /** * DIV 레이어 팝업 오픈 * * @param html 팝업 div id * @param onShown 팝업 오픈 후, 호출할 callback 함수 * @param onHidden 팝업 닫은 후, 호출할 callback 함수 */ function openDivPopupId(id, onShown, onHidden) { var _$popupDiv = $("#"+id); //19.09.24 이현주 추가 - IE에서 팝업창 투명 문제로 익스플로러일때는 ie라는 클래스 추가 var agent = navigator.userAgent.toLowerCase(); var isIE = window.ActiveXObject || "ActiveXObject" in window; if ( isIE != false || (navigator.appName == 'Netscape' && navigator.userAgent.search('Trident') != -1) || (agent.indexOf("msie") != -1) ) { _$popupDiv.addClass("ie"); } _$popupDiv.attr("cla", 1).focus(); if (onShown != undefined) { _$popupDiv.on('shown.bs.modal', function(e) { _$popupDiv.keydown(keypressDiv); onShown(); }); } else { _$popupDiv.on('shown.bs.modal', function(e) { _$popupDiv.keydown(keypressDiv); }); } _$popupDiv.on('hidden.bs.modal', function(e) { _$popupDiv.unbind('keydown'); if (onShown != undefined) { _$popupDiv.off('shown.bs.modal'); } if (onHidden != undefined) { onHidden(e); _$popupDiv.off('hidden.bs.modal'); } }); //console.log("openDivPopupId"); //onsole.dir(_$popupDiv); _$popupDiv.modal({ backdrop : "static", // keyboard : false }); // 드래그가 가능하도록 속성을 추가한다. //_$popupDiv.draggable({ handle:'.modal-header'}); $("#"+id+ " .modal-dialog").draggable({ handle:'.modal-header'}); //19.07.31 이현주 추가 - ESC로 레이어 팝업 닫기. $(document).keydown(function(e) { var key = e.keyCode ? e.keyCode : e.which; if (key == 27) { _$popupDiv.modal('hide'); } }); text_onload(); } /** * DIV 레이어 팝업 오픈 * * @param html 팝업 HTML * @param onShown 팝업 오픈 후, 호출할 callback 함수 * @param onHidden 팝업 닫은 후, 호출할 callback 함수 * @param popId 팝업 ID (미 입력시 자동으로 생성) * * @returns 팝업 ID */ function openDivPopupHtml(html, onShown, onHidden, popId, backdrop) { var id = popId; if (popId == null) { id = getNextDivPopupId(); } /* 19.09.23 이현주 - 인터넷 브라우저 찾기 로직 추가 * 1. IE (10버전 이하)의 userAgent에 microsoft internet explorer 포함 * 2. IE11에는 Netscape로 표시 * 3. Trident : IE에서 사용하고 있는 레이아웃 엔진 */ var agent = navigator.userAgent.toLowerCase(); var isIE = window.ActiveXObject || "ActiveXObject" in window; if ( isIE != false || (navigator.appName == 'Netscape' && navigator.userAgent.search('Trident') != -1) || (agent.indexOf("msie") != -1) ) { // 브라우저가 IE일 경우 ie 클래스를 추가하여 팝업창이 투명해지는 문제 상쇄. $("body").append(""); } else { // 크롬,사파리,파이어폭스,엣지에서는 정상 작동. $("body").append(""); } // 기존 append 형식. //$("body").append(""); var _$popupDiv = $("#"+id); if (onShown != undefined) { var showdedFunction = function() { onShown(); // $('.ui-jqgrid-bdiv').perfectScrollbar(); _$popupDiv.keydown(keypressDiv); }; _$popupDiv.on('shown.bs.modal', showdedFunction); } else { var showdedFunction = function() { // $('.ui-jqgrid-bdiv').perfectScrollbar(); _$popupDiv.keydown(keypressDiv); }; _$popupDiv.on('shown.bs.modal', showdedFunction); } _$popupDiv.on('hidden.bs.modal', function(e) { if (onHidden != undefined) { onHidden(e); } _$popupDiv.unbind('keydown'); _$popupDiv.remove(); }); _$popupDiv.html(html); _$popupDiv.modal({ backdrop : "static", // 주변부 클릭시 안닫혔으면 좋겠다하여 추가함 2020/06/24 권명호 // backdrop : true, keyboard : true }); _$popupDiv.modal('show'); //_$popupDiv.data('bs.modal').options.keyboard = true; if(backdrop != undefined && backdrop == 'static') { _$popupDiv.data('bs.modal').options.backdrop = "static"; } // // 드래그가 가능하도록 속성을 추가한다. $("#"+id + " .modal-dialog").draggable({ handle:'.modal-header'}); //19.07.31 이현주 추가 - ESC로 레이어 팝업 닫기. $(document).keydown(function(e) { var key = e.keyCode ? e.keyCode : e.which; if (key == 27) { _$popupDiv.modal('hide'); } }); return id; } /** * DIV 레이어 팝업 오픈 * * @param url 팝업 화면 URL * @param param 팝업 화면 파라미터 * @param onShown 팝업 오픈 후, 호출할 callback 함수 * @param onHidden 팝업 닫은 후, 호출할 callback 함수 * * @returns 팝업 ID */ function openDivPopupAjax(url, param, onShown, onHidden) { var id = getNextDivPopupId(); $.ajax({ type : "POST", url : url, dataType: "html", async : false, data : param, success: function(data) { openDivPopupHtml(data, onShown, onHidden, id); } }); return id; } /** * 도서 커버 이미지 추출 * * @param isbn 해당 도서의 isbn * @param id 출력할 img태그의 id */ function getCoverImg(isbn, id) { id = strReplaceAll(id, "#", "" ); $('#' + id).attr("src","/METIS/img/book.png"); $('#' + id).prop("width" ,"120"); $('#' + id).prop("height","140"); // 커버 이미지 사용유무가 N이면 표지 이미지는 항상 no image로 한다. var cover_yn = getViewOptionData('표지 이미지 API 사용유무',localStorage.getItem('current_user_manage_code')); if(cover_yn.length > 0) { if(cover_yn[0].VALUE == "N") { return; } } if(undefined == isbn || null == isbn || "" == isbn) { $('#' + id).attr("src","/METIS/img/book.png"); $('#' + id).prop("width" ,"120"); $('#' + id).prop("height","140"); return; } $('#loading_flag').val("false"); //alert($('#loading_flag').val()); $.ajax({ type: "POST", url: "/METIS/getCoverImage.do", dataType: "html", async : false, data:{ "isbn" : isbn, "result_type" : "JSON" }, success: function(data) { var obj = JSON.parse(data); if(obj.thumbnail != null) { $('#' + id).attr("src",obj.thumbnail); $('#' + id).prop("width" ,"120"); $('#' + id).prop("height","140"); } else { $('#' + id).attr("src","/METIS/img/book.png"); $('#' + id).prop("width" ,"120"); $('#' + id).prop("height","140"); } $('#loading_flag').val("true"); } }); } // 초기화 버튼 클릭시 해당 페이지 리로딩 function pageInit() { var cm_current_location = window.location.href; if(undefined != cm_current_location && null != cm_current_location && "" != cm_current_location) { var temp_last_str = cm_current_location.substr(cm_current_location.length-1,1); if(temp_last_str == "#") { cm_current_location = cm_current_location.substr(0,cm_current_location.length-1); } window.location = cm_current_location; } else { window.location = window.location; } } // replaceAll함수 function strReplaceAll(str, find, replace ) { str = str + ""; if(undefined != str && undefined != find && undefined != replace) { return str.replace( new RegExp( find, 'g' ), replace ); } else { return ""; } } function hexToRgbA(hex){ var c; if(/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)){ c= hex.substring(1).split(''); if(c.length== 3){ c= [c[0], c[0], c[1], c[1], c[2], c[2]]; } c= '0x'+c.join(''); return 'rgba('+[(c>>16)&255, (c>>8)&255, c&255].join(',')+',1)'; } throw new Error('Bad Hex'); } // 날짜를 원하는 형식으로 반환한다. // yyyy-mm-dd, yyyy/mm/dd // combine 으로 구분한다. 년월일만 function formatDateYYYYMMDD(date, combine) { if ( date == "" ) return ""; combine = typeof combine !== 'undefined' ? combine : "/"; if ( Object.prototype.toString.call(date) === "[object String]" ) { date = date.replace(/\s|:|-|\/|\.|/g, ''); if ( date.length < 8 ) return ""; yyyy = date.substr(0,4); mm = Number(date.substr(4,2))-1; dd = date.substr(6,2); date = new Date(yyyy, mm, dd); } var d = new Date(date), month = '' + (d.getMonth() + 1), day = '' + d.getDate(), year = d.getFullYear(); if ( Object.prototype.toString.call(d) === "[object Date]" ) { // it is a date if ( isNaN( d.getTime() ) ) { // d.valueOf() could also work return ""; } else { // date is valid if (month.length < 2) month = '0' + month; if (day.length < 2) day = '0' + day; return [year, month, day].join(combine); } } else { // not a date return ""; } return ""; } //날짜를 원하는 형식으로 반환한다. //yyyy-mm-dd hh:mm:ss, yyyy/mm/dd hh:mm:ss //combine 으로 구분한다. function formatDateYYYYMMDDHH(date, combine, convertHour) { date = typeof date !== 'undefined' ? date : ""; if ( date == "" ) return ""; combine = typeof combine !== 'undefined' ? combine : "/"; if ( Object.prototype.toString.call(date) === "[object String]" ) { date = date.replace(/\s|:|-|\/|\.|/g, ''); if ( date.length < 8 ) return ""; if ( date.length > 14 ) { date = date.substr(0, 14); } var yyyy, mm, dd, hh, mi, ss; switch(date.length) { case 8: yyyy = date.substr(0,4); mm = Number(date.substr(4,2))-1; dd = date.substr(6,2); date = new Date(yyyy, mm, dd); break; case 10: yyyy = date.substr(0,4); mm = Number(date.substr(4,2))-1; dd = date.substr(6,2); hh = date.substr(8,2); date = new Date(yyyy, mm, dd, hh); break; case 12: yyyy = date.substr(0,4); mm = Number(date.substr(4,2))-1; dd = date.substr(6,2); hh = date.substr(8,2); mi = date.substr(10,2); date = new Date(yyyy, mm, dd, hh, mi); break; case 14: yyyy = date.substr(0,4); mm = Number(date.substr(4,2))-1; dd = date.substr(6,2); hh = date.substr(8,2); mi = date.substr(10,2); ss = date.substr(12,2); date = new Date(yyyy, mm, dd, hh, mi, ss); break; default: return ""; } } var d = new Date(date), month = '' + (d.getMonth() + 1), day = '' + d.getDate(), year = d.getFullYear(), hh = d.getHours(), mi = ''+d.getMinutes(), ss = ''+d.getSeconds(); if ( Object.prototype.toString.call(d) === "[object Date]" ) { // it is a date if ( isNaN( d.getTime() ) ) { // d.valueOf() could also work return ""; } else { //22.10.21 hour을 변환하지 않는 건 수정. 이미 해당 함수를 쓰고 있는 함수에 영향주지 않기 위해 예외처리 if(convertHour != undefined && convertHour !=null && convertHour != ""){ if(convertHour == "convertHour"){ hh = String(hh) if (hh.length < 2) hh = '0'+hh; } } // date is valid if (month.length < 2) month = '0' + month; if (day.length < 2) day = '0' + day; if (mi.length < 2) mi = '0'+mi; if (ss.length < 2) ss = '0'+ss; return [year, month, day].join(combine) + " " + [hh, mi, ss].join(":"); } } else { // not a date return ""; } return ""; } // 현재 시간을 구한다. function getNowTime() { var d = new Date(Date.now()), hh = d.getHours(), mi = d.getMinutes(), ss = d.getSeconds(); // date is valid if (hh < 10) hh = '0' + hh; if (mi < 10) mi = '0' + mi; if (ss < 10) ss = '0' + ss; return [hh, mi, ss].join(":"); } // object copy.. function CopyObject(obj, isDeep) { isDeep = typeof isDeep !== 'undefined' ? isDeep : true; if ( isDeep ) { return jQuery.extend(true, {}, obj); } else { return $.extend({}, obj); } } // 입력된 두 날짜 사이의 차이을 일자로 구한다. first - second function marginTwoDate(first, end) { var firstDate = formatDateYYYYMMDD(first); var endDate = formatDateYYYYMMDD(end); if ( firstDate == "" || endDate == "" ) { return null; } firstDate = new Date(firstDate); endDate = new Date(endDate); var days = firstDate.getTime() - endDate.getTime(); days = parseInt(days / (1000*60*60*24)); if ( isNaN(days) == false ) return days; return null; } // 날짜 및 시간을 추출한다. // datepicker를 쓰면 $('#birthday').val()로 했을때 2016-01-01 이렇게 -가 포함되어 출력됨 그것을 제거하기 위해 생성함 function getDateVal(obj_id) { var data = $('#'+obj_id).val(); data = strReplaceAll(data, "/", ""); data = strReplaceAll(data, "-", ""); data = strReplaceAll(data, ":", ""); data = strReplaceAll(data, " ", ""); return data; } //날짜 및 시간을 추출한다. //datepicker를 쓰면 $('#birthday').val()로 했을때 2016-01-01 이렇게 -가 포함되어 출력됨 그것을 제거하기 위해 생성함 function getDateReplace(dateInfo) { var data = dateInfo; data = strReplaceAll(data, "/", ""); data = strReplaceAll(data, "-", ""); data = strReplaceAll(data, ":", ""); data = strReplaceAll(data, " ", ""); return data; } // 키이벤트가 엔터인지 확인 function isEnter(event) { var keyCode = event.which ? event.which : event.keyCode; if (keyCode == 13) { return true; } else { return false; } } /** * 날짜 포맷 변경 *
(Ex : getDateFormat("20140924", "-") -> "2014-09-24") * * @param date 날짜 데이터 (yyyyMMdd) * @param dateGubun 날짜 구분자 * @returns 날짜 포맷 변경된 데이터 */ function getDateFormat(date, dateGubun) { return date.replace(/(\d{4})(\d{2})(\d{2})/g, '$1'+dateGubun+'$2'+dateGubun+'$3'); } /** * 날짜 시간 포맷 변경 *
(Ex : getDateTimeFormat("20141111231111", "/", ":") -> "2014/11/11 23:11:11") * * @param date 날짜 시간 데이터 (yyyyMMddHHmmss) * @param dateGubun 날짜 구분자 * @param timeGubun 시간 구분자 * @returns 날짜 시간 포맷 변경된 데이터 */ function getDateTimeFormat(date, dateGubun, timeGubun) { return date.replace(/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/g, '$1'+dateGubun+'$2'+dateGubun+'$3 $4'+timeGubun+'$5'+timeGubun+'$6'); } /** * 비치상태 코드정보 */ function getCdCodeFurnishStatus() { return [ { code : "", desc : "적용안함" }, { code : "1" , desc : "신청중" }, { code : "2" , desc : "처리중" }, { code : "3" , desc : "비치중" }, { code : "4" , desc : "취소" } ]; } /** * 비치상태 셀렉트 박스 초기화 * * @param id element id * @param notCode 제거할 코드 */ function getComboCodeDataFurnishStatus(id, notCode) { getComboCodeDataFurnishStatusEl($("#"+id), notCode); } /** * 비치상태 셀렉트 박스 초기화 * * @param $el element jQuery Obj * @param notCode 제거할 코드 */ function getComboCodeDataFurnishStatusEl($el, notCode) { var furnishStatusCodes = getCdCodeFurnishStatus(); for (var i = 0; i < furnishStatusCodes.length; i++) { if (notCode != furnishStatusCodes[i].code) { if(furnishStatusCodes[i].code == '1') { $el.append(""); } else { $el.append(""); } } } } /** * 비치상태 코드 설명 값 */ function getDescFurnishStatus(code) { var furnishStatusCodes = getCdCodeFurnishStatus(); for (var i = 0; i < furnishStatusCodes.length; i++) { if (furnishStatusCodes[i].code == code) { return furnishStatusCodes[i].desc; } } return ""; } /** * 모델창draggable * */ function modalDraggable(modalId){ var id = strReplaceAll(modalId, "#", "" ); $("#"+id+ " .modal-dialog").draggable({ handle:'.modal-header'}); } /** * 숫자만입력 * */ function onlyNumber(data) { var number = /^[0-9]*$/; //숫자만 허용 var stauts; $.each(data, function(key, value){ if (!number.test(value)){ Message_callback("숫자만 입력하실 수 있습니다", function() { $("#"+key).focus(); }); stauts="FALE"; return false; }else{ stauts="SUCCESS"; return true; } }); return stauts; } /** * 전화번호 정규식 체크 * */ function phoneCheck(data) { var tel = /^(01[016789]{1}|070|02|0[3-9]{1}[0-9]{1})-[0-9]{3,4}-[0-9]{4}$/; var stauts; if(!tel.test(data)){ Message_callback("전화번호 형식으로 입력해주세요 (숫자, - )", function() { $("#"+key).focus(); }); stauts="FALE"; return null; }else{ stauts="SUCCESS"; return stauts; } } /** * 숫자만 입력 가능하도록 수정 **/ function numberOnlyInput(inputId) { var id = strReplaceAll(inputId, "#", "" ); $('#' + id).keydown(function(e){ return AllowNumbersOnly(e); }); // $('#' + id).keyup(function(e){ // // var obj = $('#' + id); // var input_data = obj.val(); // input_data = strReplaceAll(input_data,"c",""); // input_data = strReplaceAll(input_data,"C",""); // input_data = strReplaceAll(input_data,"v",""); // input_data = strReplaceAll(input_data,"V",""); // // obj.val(input_data); // }); } /** * 숫자만 입력 가능하도록 수정 objec를 전달받음 **/ function numberOnlyInputObj(obj) { // 숫자 제외 입력자체가 안되도록 obj.keydown(function(e){ return AllowNumbersOnly(e); }); // 19.05.02 jiyeong 위 코드 한글 입력 문제 보완. obj.keyup(function(e){ var code = (e.which) ? e.which : e.keyCode; if(code == 189 || code == 109) // - 입력 가능하게 변경 { // - 는 입력 가능하도록 변경 } else { // 한글 입력시 제거하기 위함 obj.val(obj.val().replace(/[^0-9|-]/g,'')); } return AllowNumbersOnly(e); }); // obj.keyup(function(e){ // // var input_data = obj.val(); // input_data = strReplaceAll(input_data,"c",""); // input_data = strReplaceAll(input_data,"C",""); // input_data = strReplaceAll(input_data,"v",""); // input_data = strReplaceAll(input_data,"V",""); // // obj.val(input_data); // }); } //숫자와 - 만 입력 가능하도록 function numberandHyphenOnlyInput(inputId) { var id = strReplaceAll(inputId, "#", "" ); $('#' + id).keydown(function(e){ return AllowNumbersOnlyandHyphen(e); }); } /** * 숫자만 입력 가능하도록 수정 * object를 직전 전달받아 진행함 **/ function numberOnlyInput_object(input) { input.keydown(function(e){ return AllowNumbersOnly(e); }); } function isNumber(value) { if ( typeof value === 'number' ) { return true; } if ( typeof value === 'string' ) { if ( value.trim().length <= 0 ) return false; return isFinite(value); } return false; } /** * 입력된 키값이 숫자인 경우 true, 아닌경우 false를 리턴 **/ function AllowNumbersOnly(e) { var code = (e.which) ? e.which : e.keyCode; console.log(code); // 눌리면 안되는 경우 if (code > 31 && ((code < 48 || code > 57) && (code < 96 || code > 105))) { // 방향키는 예외처리 if(code >= 37 && code <= 40) { } else if(code == 46 || code == 35 || code == 36 || code == 17 || code == 86 || code == 67) // delete, home, ctrl키 예외처리 { } else if(code == 189 || code == 109) // - 입력 가능하게 변경 { } else { // 이외의 값은 모두 입력 불가 e.preventDefault(); } } else { } } /** * 입력된 키값이 숫자와 - 경우 true, 아닌경우 false를 리턴 **/ function AllowNumbersOnlyandHyphen(e) { var code = (e.which) ? e.which : e.keyCode; if (code > 31 && ((code < 48 || code > 57) && (code < 96 || code > 105)) && (code < 109)){ e.preventDefault(); } } /** * isbn의 유효성 체크 **/ function common_isbnCheck(str) { var sum, weight, digit, check, i; str = str.replace(/[^0-9X]/gi, ''); if (str.length != 10 && str.length != 13) { return false; } if (str.length == 13) { sum = 0; for (i = 0; i < 12; i++) { digit = parseInt(str[i]); if (i % 2 == 1) { sum += 3*digit; } else { sum += digit; } } check = (10 - (sum % 10)) % 10; return (check == str[str.length-1]); } if (str.length == 10) { weight = 10; sum = 0; for (i = 0; i < 9; i++) { digit = parseInt(str[i]); sum += weight*digit; weight--; } check = 11 - (sum % 11); if (check == 10) { check = 'X'; } return (check == str[str.length-1].toUpperCase()); } } //array로 되어있는 객체를 넘겨주면 , 단위로 연결해서 전달한다. function getArrayForConvert(arrayData, divisionStr) { if(arrayData == undefined) { return null; } else { // 구분자가 없다면 기본은 ,로 한다. if(divisionStr == undefined) { divisionStr = ","; } var return_str = ""; for(var index in arrayData) { if(return_str == "") { return_str = arrayData[index]; } else { return_str += divisionStr + arrayData[index]; } } return return_str; } } // div에 값을 추가할때 사용되며 해당 함수를 사용할때는 // clip 및 title 값도 같이 적용된다. function setDivTitle(obj, txt) { // 기존정보 초기화 추가 obj.empty(); obj.addClass("overTextClip"); obj.attr("title",txt); obj.append(txt); } //class에 overTextClip를 선언한 div의 title을 자동으로 선언한다. //clip 및 title 값도 같이 적용된다. function setAllDivTitle() { $('.overTextClip').each(function(pi,po){ po.title = po.textContent; }); } //배열에서 앞뒤 공백을 제거하는 함수 function blankTrim(data){ $.each(data, function(key, value){ //문자일 경우만 실행 if(typeof(value) == "string"){ value = value.trim(); data[key] = value; }else{ data[key] = value; } }); return data; } //배열에서 공백을 제거하는 함수 //data: 공백을 제거할 배열, //blanks: 제거할 공백 ex)" " or " ".... function blankReplaceAll(data,blanks){ var blank = blanks; $.each(data, function(key, value){ value = strReplaceAll(value,blank,""); data[key] = value; }); return data; } //문자열에서 공백을 제거하는 함수 //data: 공백을 제거할 배열, //blanks: 제거할 공백 ex)" " or " ".... function blankReplaceStr(data,blanks){ var blank = blanks; if(blank == undefined){ blank = " "; } var return_data = strReplaceAll(data,blank,""); return return_data; } function JSONToCSVConvertor(JSONData, ReportTitle, ShowLabel,headers,excludeColumns,fileName) { //If JSONData is not an object then JSON.parse will parse the JSON string in an Object var arrData = typeof JSONData != 'object' ? JSON.parse(JSONData) : JSONData; var CSV = ''; //Set Report title in first row or line CSV += ReportTitle + '\r\n\n'; //This condition will generate the Label/Header if (ShowLabel) { var row = ""; if(headers) { row = headers.join(','); } else { //This loop will extract the label from 1st index of on array for (var index in arrData[0]) { //Now convert each value to string and comma-seprated row += index + ','; } } row = row.slice(0, -1); //append Label row with line break CSV += row + '\r\n'; } //1st loop is to extract each row for (var i = 0; i < arrData.length; i++) { var row = ""; //2nd loop will extract each column and convert it in string comma-seprated for (var colName in arrData[i]) { if(excludeColumns && excludeColumns.indexOf(colName)) continue; row += '"' + arrData[i][colName] + '",'; } row.slice(0, row.length - 1); //add a line break after each row CSV += row + '\r\n'; } if (CSV == '') { alert("Invalid data"); return; } if(!fileName) { //Generate a file name fileName = "MyReport_"; //this will remove the blank-spaces from the title and replace it with an underscore fileName += ReportTitle.replace(/ /g,"_"); } if (navigator.appName == "Microsoft Internet Explorer") { var oWin = window.open(); oWin.document.write('sep=,\r\n' + CSV); oWin.document.close(); oWin.document.execCommand('SaveAs', true, fileName + ".csv"); oWin.close(); } else { //Initialize file format you want csv or xls var uri = 'data:text/csv;charset=utf-8,' + escape(CSV); // Now the little tricky part. // you can use either>> window.open(uri); // but this will not work in some browsers // or you will not get the correct file extension //this trick will generate a temp tag var link = document.createElement("a"); link.href = uri; //set the visibility hidden so it will not effect on your web-layout link.style = "visibility:hidden"; link.download = fileName + ".csv"; //this part will append the anchor tag and remove it after automatic click document.body.appendChild(link); link.click(); document.body.removeChild(link); } } //부록여부 코드 해석 function common_book_appendix_flag(cellval){ if(null == cellval || undefined == cellval) { return ""; } var return_data = ""; if(cellval=='A'){ return_data = '부록'; }else if(cellval=='B'){ return_data = '책'; } return return_data; } // 입력구분 formatter //입력구분 format function inputtype(cellval){ if(null == cellval || undefined == cellval) { return ""; } var return_data = ""; if(cellval=='0'){ return_data = '화면입력'; }else if(cellval=='1'){ return_data = '재활용'; }else if(cellval=='2'){ return_data = '비치희망'; }else if(cellval=='3'){ return_data = '파일반입'; }else if(cellval=='4'){ return_data = '소장자료'; }else{} return return_data; } // 가격 천단위 , 찍기 //콤마찍기 var priceFotmat = function numberFormat(num) { var temp_num = strReplaceAll(num,",",""); return Number(temp_num).toLocaleString('en'); /* var price = parseInt(num); var pattern = /(-?[0-9]+)([0-9]{3})/; while(pattern.test(price)) { price = price.replace(pattern,"$1,$2"); } return price;*/ }; //메인그리드 위치 조정 함수 function getScreenSize(){ return $("main > .metis_container").width(); } //메인그리드 위치 조정 함수 function getScreenHeightSize(){ return $(window).height(); } getScreenHeightSize(); // 전체 화면의 크기 추출 function getFullScreenSize() { //var width = $("#root_container").width(); var width = screen.width; // 위의 경우 특정 브라우저에서 정상적으로 값을 불러오지 못해 수정함 21/04/14 권명호 var height = $("#root_container").height(); // var $inner_h = $(document).height(); // var $container_h = $('#root_container').height(); // $inner_h = $inner_h > $container_h ? $inner_h : $container_h; var return_data = {}; return_data.width = width; return_data.height = height; return return_data; } // 페이지 초기화 function common_page_reloading() { confirmMessage("페이지 내용을 초기화 하시겠습니까?", page_reloading_excute); } // 페이지를 실제 초기화 진행한다. function page_reloading_excute(e, flag) { if(flag == true) { window.location = window.location; } } // 책바다로 이동 function moveBookSea() { var url = "http://www.nl.go.kr/nill/shdcmn/common/login_k.jsp?LocalLibCode=" + localStorage.getItem('current_user_lib_code'); window.open(url,'_blank'); } // 모든 코드 클래스의 콤보박스 function getComboCodeTotalData(id) { var totla_code_class = JSON.parse(localStorage.getItem('TotalCdClassCode')); if(null == totla_code_class) { console.log("localstorage null"); return value_code; } var $el = $("#"+id+""); $el.empty(); $el.append(""); for(var i = 0 ; i < totla_code_class.length ; i++) { var current_code = totla_code_class[i].class_code; var current_name = totla_code_class[i].class_name; $el.append(""); } } // 문자유형(smstype) 코드 콤보박스 // select_code : 선택된 code로만 콤보박스 구성시 사용 function getComboCodeSmsType(id,select_code) { var totla_smsType = JSON.parse(localStorage.getItem('SMSTypeEnv')); if(null == totla_smsType) { console.log("localstorage null"); return value_code; } var $el = $("#"+id+""); $el.empty(); if(select_code == null || select_code == undefined || select_code == ""){ $el.append(""); for(var i = 0 ; i < totla_smsType.length ; i++) { var smsType_code = totla_smsType[i].TYPE; var smsType_name = totla_smsType[i].NAME; $el.append(""); } }else{ var select = select_code.split(","); for(var i = 0 ; i < totla_smsType.length ; i++) { // var smsType_code = totla_smsType[i].TYPE; // var smsType_name = totla_smsType[i].NAME; for(var h in select){ if(select[h] == totla_smsType[i].TYPE){ $el.append(""); } } } } } //20221205 이상민 메일관련 타입 로그인로컬스토리지 get function getComboCodeMailType(id,select_code) { var totla_MailType = JSON.parse(localStorage.getItem('getMailType')); if(null == totla_MailType) { console.log("localstorage null"); return value_code; } var $el = $("#"+id+""); $el.empty(); if(select_code == null || select_code == undefined || select_code == ""){ $el.append(""); for(var i = 0 ; i < totla_MailType.length ; i++) { var MailType_code = totla_MailType[i].MAIL_CLASS; var MailType_name = totla_MailType[i].MNG_GROUP; $el.append(""); } }else{ var select = select_code.split(","); for(var i = 0 ; i < totla_MailType.length ; i++) { for(var h in select){ if(select[h] == totla_MailType[i].MAIL_CLASS){ $el.append(""); } } } } } //isbn을 던지면 네이버 새 창이 띄워지는 함수. function getNewIsbnPopup(isbn){ param={}; /*param.title = ''; param.author = ''; param.publisher = '';*/ param.isbn = isbn; // console.log(param.isbn); var linkurl = ''; $.ajax({ type : "POST", url : '/METIS/DataSearch/naverapiSearch.do', dataType: "json", data : param, async : false, success : function(data) { // console.dir(data); linkurl = data.items[0].link; window.open(linkurl,'_blank'); } }); } //sha-256 // 암호화를 서버에 요청을 날려 받아오는 신규 형태 function SHA256_new(passwd, user_id) { var return_passwd = ""; $.ajax({ type: "POST", url: "/METIS/UserMng/pinpadPassword.do", dataType: "json", async : false, data:{ "password" : passwd, "user_id" : user_id, "result_type" : "JSON" }, success: function(data) { // var obj = JSON.parse(data); // onlyMessage(obj.statusDescription); // console.dir(data); return_passwd = data.password; } }); return return_passwd; } // sha-256 function SHA256(s) { var chrsz = 8; var hexcase = 0; function safe_add (x, y) { var lsw = (x & 0xFFFF) + (y & 0xFFFF); var msw = (x >> 16) + (y >> 16) + (lsw >> 16); return (msw << 16) | (lsw & 0xFFFF); } function S (X, n) { return ( X >>> n ) | (X << (32 - n)); } function R (X, n) { return ( X >>> n ); } function Ch(x, y, z) { return ((x & y) ^ ((~x) & z)); } function Maj(x, y, z) { return ((x & y) ^ (x & z) ^ (y & z)); } function Sigma0256(x) { return (S(x, 2) ^ S(x, 13) ^ S(x, 22)); } function Sigma1256(x) { return (S(x, 6) ^ S(x, 11) ^ S(x, 25)); } function Gamma0256(x) { return (S(x, 7) ^ S(x, 18) ^ R(x, 3)); } function Gamma1256(x) { return (S(x, 17) ^ S(x, 19) ^ R(x, 10)); } function core_sha256 (m, l) { var K = new Array(0x428A2F98, 0x71374491, 0xB5C0FBCF, 0xE9B5DBA5, 0x3956C25B, 0x59F111F1, 0x923F82A4, 0xAB1C5ED5, 0xD807AA98, 0x12835B01, 0x243185BE, 0x550C7DC3, 0x72BE5D74, 0x80DEB1FE, 0x9BDC06A7, 0xC19BF174, 0xE49B69C1, 0xEFBE4786, 0xFC19DC6, 0x240CA1CC, 0x2DE92C6F, 0x4A7484AA, 0x5CB0A9DC, 0x76F988DA, 0x983E5152, 0xA831C66D, 0xB00327C8, 0xBF597FC7, 0xC6E00BF3, 0xD5A79147, 0x6CA6351, 0x14292967, 0x27B70A85, 0x2E1B2138, 0x4D2C6DFC, 0x53380D13, 0x650A7354, 0x766A0ABB, 0x81C2C92E, 0x92722C85, 0xA2BFE8A1, 0xA81A664B, 0xC24B8B70, 0xC76C51A3, 0xD192E819, 0xD6990624, 0xF40E3585, 0x106AA070, 0x19A4C116, 0x1E376C08, 0x2748774C, 0x34B0BCB5, 0x391C0CB3, 0x4ED8AA4A, 0x5B9CCA4F, 0x682E6FF3, 0x748F82EE, 0x78A5636F, 0x84C87814, 0x8CC70208, 0x90BEFFFA, 0xA4506CEB, 0xBEF9A3F7, 0xC67178F2); var HASH = new Array(0x6A09E667, 0xBB67AE85, 0x3C6EF372, 0xA54FF53A, 0x510E527F, 0x9B05688C, 0x1F83D9AB, 0x5BE0CD19); var W = new Array(64); var a, b, c, d, e, f, g, h, i, j; var T1, T2; m[l >> 5] |= 0x80 << (24 - l % 32); m[((l + 64 >> 9) << 4) + 15] = l; for ( var i = 0; i>5] |= (str.charCodeAt(i / chrsz) & mask) << (24 - i%32); } return bin; } function Utf8Encode(string) { string = string.replace(/\r\n/g,"\n"); var utftext = ""; for (var n = 0; n < string.length; n++) { var c = string.charCodeAt(n); if (c < 128) { utftext += String.fromCharCode(c); } else if((c > 127) && (c < 2048)) { utftext += String.fromCharCode((c >> 6) | 192); utftext += String.fromCharCode((c & 63) | 128); } else { utftext += String.fromCharCode((c >> 12) | 224); utftext += String.fromCharCode(((c >> 6) & 63) | 128); utftext += String.fromCharCode((c & 63) | 128); } } return utftext; } function binb2hex (binarray) { var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; var str = ""; for(var i = 0; i < binarray.length * 4; i++) { str += hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8+4)) & 0xF) + hex_tab.charAt((binarray[i>>2] >> ((3 - i%4)*8 )) & 0xF); } return str; } s = Utf8Encode(s); return binb2hex(core_sha256(str2binb(s), s.length * chrsz)); } //엑셀 출력등에서 서버의 경로를 구하기 위한 함수 function getLocalServerIpAndPort() { var param = {}; var full_url = window.location + ""; var server_ip = ""; var host_port = ""; var subString_idnex = full_url.indexOf("/METIS/"); if(Number(subString_idnex) > -1) { full_url = full_url.substring(7,subString_idnex);; var temp_data = full_url.split(":"); if(temp_data.length == 2) { param.server_ip = temp_data[0]; param.host_port = temp_data[1]; } return param; } else { return param; } } // 엑셀 출력등에서 서버의 경로를 구하기 위한 함수 function getServerIpAndPort(param) { // 요청시 공통으로 넣도록 변경 return param; // var full_url = window.location + ""; // var server_ip = ""; // var host_port = ""; // var subString_idnex = full_url.indexOf("/METIS/"); // // if(Number(subString_idnex) > -1) // { // full_url = full_url.substring(7,subString_idnex);; // // var temp_data = full_url.split(":"); // // if(temp_data.length == 2) // { // param.server_ip = temp_data[0]; // param.host_port = temp_data[1]; // } // // // return param; // } // else // { // return param; // } } //left padding s with c to a total of n chars function padding_left(s, c, n) { if (! s || ! c || s.length >= n) { return s; } var max = (n - s.length)/c.length; for (var i = 0; i < max; i++) { s = c + s; } return s; } // right padding s with c to a total of n chars function padding_right(s, c, n) { if (! s || ! c || s.length >= n) { return s; } var max = (n - s.length)/c.length; for (var i = 0; i < max; i++) { s += c; } return s; } //메뉴 이동 함수 function access_authority_chk(codekey, page_type, move_division){ var menulist = JSON.parse(localStorage.getItem('AllMenuInfo')); var accessList = JSON.parse(localStorage.getItem('AccessAuthInfo')); var chkMenuFlag = 0; var chkAccFlag = 0; for(var i=0 ; i menulist.code === "COLR005"); if( MOVEPAGE_YN == "" || MOVEPAGE_YN == "Y"){ window.open(filterUrl[0].url,"_blank"); }else{ location.href = filterUrl[0].url; return; } drop_flag = false; } else{ // if( MOVEPAGE_YN == "" || MOVEPAGE_YN == "Y"){ window.open(accessList[j].access_url,"_blank"); }else{ location.href = accessList[j].access_url; return; } drop_flag = false; } // // 메뉴 이동시 새탭이 열리고 메뉴가 닫히도록 추가함 // // 2019/01/31 권명호 // var location = window.location + ""; // if(location.indexOf('DashboardMain.jsp') != -1) // { // var $dropdown_content = $('.dropdown_content'); // $dropdown_content.fadeOut(100); // alert('dash'); // } // else // { // alert('normal'); // } if(undefined == move_division) { var $dropdown_content = $('.dropdown_content'); $dropdown_content.fadeOut(100); $('aside').fadeIn(100); $('.dim-layer').fadeOut(100,function(){ $(this).remove(); }) } else { var $dropdown_content = $('.dropdown_content'); $dropdown_content.fadeOut(100); } // var $dropdown_content = $('.dropdown_content'); // $dropdown_content.fadeOut(100); // $('aside').fadeToggle(100); // $('.dim-layer').fadeToggle(100,function(){ // $(this).remove(); // }) } } } } //메뉴 리스트에 일치하는 코드 키가 없을 경우 if(chkMenuFlag==0){ onlyMessage("연결할 수 없는 페이지이거나 코드가 변경되었습니다. 관리자에게 문의하세요."); } //접근권한 리스트에 없을 경우 if(chkAccFlag==0){ onlyMessage("접근 권한이 없습니다. 관리자에게 문의하세요."); } } // 문자열을 bool 로 컨버트 function stringToBoolean(sStr) { var returnValue = false; sStr = typeof sStr !== 'undefined' ? sStr : ""; if(typeof(sStr) === "boolean") { returnValue = sStr; } else if(typeof(sStr) === "string") { sStr = sStr.toUpperCase() if ( sStr == "Y" || sStr == "YES" || sStr == "T" || sStr == "TRUE" ) returnValue = true; else returnValue = false; } else if(typeof(sStr) === "number") { if ( sStr == 0 ) returnValue = false; else returnValue = true; } else { returnValue = false; } return returnValue; } function storageValueToBoolean(varName) { var storageVar = null; storageVar = String(localStorage.getItem(varName)); return stringToBoolean(storageVar); } //비밀번호 변경 정규식 function passwordNewCheck(pwd_id,pwd_confirm_id) { var pwdValue = $('#'+pwd_id+'').val(); var pattern1 = /[0-9]/; var pattern2 = /[a-zA-Z]/; var pattern3 = /[!@#$%^&*()]/; if( pwdValue.length >= 10){ if( (pattern1.test(pwdValue) && pattern2.test(pwdValue)) || (pattern1.test(pwdValue) && pattern3.test(pwdValue)) || (pattern2.test(pwdValue) && pattern3.test(pwdValue)) ){ return 1; }else{ onlyMessage("비밀번호는 10자리이상 영문/숫자 또는 영문/숫자/특수문자[!@#$%^&*()]혼용으로 입력해야 합니다."); $('#'+pwd_id+'').focus(); $('#'+pwd_id+'').val(""); $('#'+pwd_confirm_id+'').val(""); return -1; } }else{ onlyMessage("비밀번호는 10자리이상 영문/숫자 또는 영문/숫자/특수문자[!@#$%^&*()]혼용으로 입력해야 합니다."); $('#'+pwd_id+'').focus(); $('#'+pwd_id+'').val(""); $('#'+pwd_confirm_id+'').val(""); return -1; } } // 그리드 rowNum 공통 function common_rowNum() { var rowNum = 2000; return rowNum; } // 그리드 rowNum 공통 function getPage_per_count() { var count = 3000; var property = getViewOptionData('검색최대건수',localStorage.getItem('current_user_manage_code')); //2018.12.06 강예슬 수정 - "" != property 추가 if(null != property && undefined != property && "" != property) { count = property[0].VALUE; } return count; } //특수기호 제거 object를 전달 function specialCharRemove_obj(obj) { if(undefined == obj || null == obj) { return ""; } else { var return_data = obj.val(); return_data = specialCharRemove_excute(return_data); return return_data; } } // 특수기호 제거 value를 직접 전달 function specialCharRemove_val(val) { if(undefined == val || null == val || "" == val) { return ""; } else { var return_data = specialCharRemove_excute(val); return return_data; } } function specialCharRemove_excute(return_data) { var pattern = /[\{\}\[\]\/?.,;:|\)*~`!^\-_+<>@\#$%&\\\=\(\'\" ]/gi; // 한글과 영문 이외의 특수문자는 제거 // var pattern = /[^(가-힣ㄱ-ㅎㅏ-ㅣa-zA-Z0-9)]/gi; // 특수문자 제거 // var pattern = /[^(0-9)]/gi; // 숫자이외는 제거 if(pattern.test(return_data)){ return_data = return_data.replace(pattern,""); } return return_data; } // 숫자와 /만 입력 가능하게 function date_check(e) { var code = (e.which) ? e.which : e.keyCode; // 눌리면 안되는 경우 if (code > 31 && ((code < 48 || code > 57) && (code < 96 || code > 105))) { // 방향키는 예외처리 if(code >= 37 && code <= 40) { } else if(code == 46 || code == 35 || code == 36) // delete, home,키 예외처리 { } else if(code == 191 ||code == 111){ }else { // 이외의 값은 모두 입력 불가 e.preventDefault(); } } else { } } // 숫자와 /와 :만 입력 가능하게 function dateTime_check(e) { var code = (e.which) ? e.which : e.keyCode; // 눌리면 안되는 경우 if (code > 31 && ((code < 48 || code > 57) && (code < 96 || code > 105))) { // 방향키는 예외처리 if(code >= 37 && code <= 40) { } else if(code == 46 || code == 35 || code == 36) // delete, home,키 예외처리 { } else if(code == 191 ||code == 111 ||code== 59|| code==186){ }else { // 이외의 값은 모두 입력 불가 e.preventDefault(); } } else { } } //날짜형식인지 체크 function dateForm_check(data,id) { var date_check = ""; var date_type = ""; if(data.indexOf("/") == -1){ date_type = "noneSlash" }else{ var pattern = /[^(0-9)]/gi; // 숫자이외는 제거 data = data.replace(pattern,""); } var yyyyMMdd = String(data); var year = yyyyMMdd.substring(0,4); var month = Number(yyyyMMdd.substring(4,6)); var day = Number(yyyyMMdd.substring(6,8)); if (data.length!=8){ date_check="false"; } if( month<1 || month>12 ) { date_check="false"; } var maxDaysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; var maxDay = maxDaysInMonth[month-1]; // 윤년 체크 if( month==2 && ( year%4==0 && year%100!=0 || year%400==0 ) ) { maxDay = 29; } if( day<=0 || day>maxDay ) { date_check="false"; } if(date_check=="false"){ Message_callback("올바른 날짜를 입력해주세요.
예) 2017/08/23 또는 20170823",function(){$(id).val('')}); return false; }else{ if(date_type == "noneSlash"){ if(Number(month)>0 && Number(month)<10){ month = "0"+month; } if(day>0 && day<10){ day = "0"+day; } data = year+"/"+month+"/"+day; $(id).setDate(data); } } } // 신규 탭으로 이동 function newTabmove(moveUrl) { window.open(moveUrl,"_blank"); } // 공백을 인코딩 변환할때 +로 변경되는 문제 해결을 위함 function utf8_blank_replace(data) { data = data.replace(/\+/g, '%20'); return data; } //설정 버튼 클릭시 좌측 메뉴 돌출 function propertySet() { $('#folding_switch').trigger('click'); } // 메뉴얼 다운로드 기능 function menual_down() { window.open('/METIS/doc/doc.zip',"_blank"); } // 공통 검색부분의 도서관 코드 부분 function getCommonSearchLibCode() { var common_search_lib_code = $('#common_search_lib_code'); var total_code = getCdCodeInfo("관리구분"); common_search_lib_code.empty(); for(var index in total_code) { // console.dir(total_code[index]); var row_str = ''; var code = total_code[index].code; var desc = total_code[index].description; row_str += '
  • '; row_str += ''; row_str += ''; row_str += '
  • '; common_search_lib_code.append(row_str); } } function headerSearchBtn() { alert("기능준비중입니다."); } function common_delay(msecs) { var start = new Date().getTime(); var cur = start; while (cur - start < msecs) { cur = new Date().getTime(); } } //ViewOptionInfo의 정보를 추출한다. function getViewOptionData(class_description, manage_code) { var ViewOptionInfo = localStorage.getItem('ViewOptionInfo'); var class_description_new = strReplaceAll(class_description,'상호대차','책밴드'); //2018.08.28 강예슬 추가 - ViewOptionInfo에 값이 없으면 빠져나가도록 if("undefined" == typeof ViewOptionInfo || undefined == ViewOptionInfo || null == ViewOptionInfo || "" == ViewOptionInfo) { return ""; } else { var jsonData_viewOptionInfo = JSON.parse(ViewOptionInfo); var result = $.grep(jsonData_viewOptionInfo, function(e) { return (e.DESCRIPTION == class_description || e.DESCRIPTION == class_description_new) && (e.MANAGE_CODE == manage_code || e.MANAGE_CODE == 'ALL'); }); if ( result == null || result.length <= 0 ) return ""; else { if(result.length > 1) { var return_array = []; // 자관 정보가 있는경우 자관꺼만 전달 for(var index in result) { var temp_one = result[index]; if(temp_one.MANAGE_CODE == manage_code) { return_array.push(temp_one); } } // 여기까지 값이 없이 왔다면 그냥 모두 전달 if(return_array.length == 1) { return return_array; } else { //중복된 데이터가 있는 경우도 있어서 배열로 return return result; } } else { //중복된 데이터가 있는 경우도 있어서 배열로 return return result; } } } } // ViewOptionInfo의 정보를 추출한다. function getViewOptionData_value(class_description, manage_code) { var getValue = getViewOptionData(class_description, manage_code); var return_data = ""; if(getValue.length > 0) { return_data = getValue[0].VALUE; } else { return_data = ''; } return return_data; } // 배열을 전달받아 중복을 제거한다. function removeDuplicatesArray(arr) { var tempArr = []; for (var i = 0; i < arr.length; i++) { if (tempArr.length == 0) { tempArr.push(arr[i]); } else { var duplicatesFlag = true; for (var j = 0; j < tempArr.length; j++) { if (tempArr[j] == arr[i]) { duplicatesFlag = false; break; } } if (duplicatesFlag) { tempArr.push(arr[i]); } } } return tempArr; } function support_select() { var online_status = localStorage.getItem('cs_available'); if(undefined != online_status && null != online_status && '' != online_status && 'Y' == online_status) { openMessagePopup({ title : "알림", msg : '지원받고자 하는 서비스를 선택해 주시기 바람니다.', btn1_text : "원격지원", btn1_function: function(e) { support_call(); }, btn2_text : "온라인문의", btn2_function: function(e) { online_cs(); } }); } else { support_call(); } } // 원격지원 눌렀을때 어떤 화면으로 띄울지 결정 function support_call() { var system_name = $('#system_name').val(); var url = ""; if(system_name == "KLAS") { url = "http://113366.com/kait"; } else { url = "http://113366.com/kait"; } window.open(url); } // 통합 관리자의 manage_code변경 function super_user_manage_code_change() { confirmMessage("관리 도서관 정보를 변경하시겠습니까?",function(e, flag){ if(true == flag) { var chanage_manage_code = $('#super_user_manage_combo').val(); // 통합관리자의 경우 관리구분의 변경이 가능하도록 하기 위해 추가함 var operator_info = localStorage.getItem('current_user_info'); current_user_info = JSON.parse(operator_info); var permission = current_user_info.PERMITION; var access_manage_box = current_user_info.ACCESS_MCOMBO_LEVEL;//23.06.20 성남도서관 요청 일반사용자 등급 관리구분 이동 권한 if(permission == "S" || access_manage_box == "Y") { var change_libinfo = localStorage.getItem('LibInfo'); var jsonArray = JSON.parse(change_libinfo); for(var index in jsonArray) { var one = jsonArray[index]; if(one.manage_code == chanage_manage_code) { localStorage.setItem('current_user_manage_code',one.manage_code); localStorage.setItem('current_user_lib_name',one.lib_name); localStorage.setItem('current_user_lib_code',one.lib_code); var param = {}; param.lib_code = one.lib_code; param.manage_code = one.manage_code; $.ajax({ type: "POST", url: "/METIS/Login/changeManageCode.do", dataType: "json", async : false, data:param, success: function(srt) { console.dir(srt); localStorage.setItem('TotalEslList', JSON.stringify(srt.TotalEslList.eslList)); // 페이지 초기화 pageInit(); } }); } } } else { onlyMessage("통합관리자만 관리구분 변경이 가능합니다."); return; } } else { $('#super_user_manage_combo').val(CURRENT_MANAGE_CODE); } }); } Date.prototype.YYYYMMDDHHMMSS = function () { var yyyy = this.getFullYear().toString(); var MM = pad(this.getMonth() + 1,2); var dd = pad(this.getDate(), 2); var hh = pad(this.getHours(), 2); var mm = pad(this.getMinutes(), 2) var ss = pad(this.getSeconds(), 2) return yyyy + MM + dd+ hh + mm + ss; }; function pad(number, length) { var str = '' + number; while (str.length < length) { str = '0' + str; } return str; } var debug_info_val = 0; function debug_info() { debug_info_val++; if(debug_info_val >= 10) { var msg_property = { title:"로그보기", msg:'확인할 로그 종류를 선택해 주세요', btn1_text:"화면단", btn1_function:function(){ /*window.location = "/METIS/Login/viewLogFileDownload.do?" + "networkadapterid=1";*/ common_logDownloadPopup("view"); }, btn2_text:"미들웨어", btn2_function:function(){ common_logDownloadPopup("mw"); } }; openMessagePopup(msg_property); } } //2019.09.10 나병은 function online_cs() { var param = {}; var storage = localStorage.getItem('current_user_info'); storage = JSON.parse(storage); //param.lib_code = "111070"; param.lib_code = storage.LIB_CODE; //Login.js의 login_excute lib_code도 수정해야 함 param.id = storage.ID; param.au_code = SHA256(param.lib_code + param.id).toUpperCase(); param.name = encodeURI(storage.LIB_NAME); param.pel = storage.BUSINESS_TEL; param.tel = storage.EXCHANGE_TEL; param.email = storage.E_MAIL; var kaitAddr = "https://cs.kaitinc.co.kr/" var url = kaitAddr + "index.php?mod=wdUserInfo&act=csLoginOk" + "&lib_code=" + param.lib_code + "&lib_id=" + param.id + "&lib_au_code=" + param.au_code + "&ui_name=" + param.name + "&ui_tel=" + param.tel + "&ui_pel=" + param.pel + "&ui_email=" + param.email; window.open(url, '_blank'); } // 현재 페이지의 마지막 페이지 명을 추출한다. function getCurrentPageUrl() { var current_url = window.location.pathname; var url_split = current_url.split('/'); if(undefined != url_split && null != url_split && "" != url_split) { if(url_split.length > 0) { return url_split[url_split.length-1]; } } else { return null; } } // 선택한 구분값의 레이아웃 정보를 불러온다. function com_Getlayout(division) { var layoutInfo = localStorage.getItem('LayoutOptionInfo'); if(undefined != layoutInfo && null != layoutInfo && '' != layoutInfo) { layoutInfo = JSON.parse(layoutInfo); if(layoutInfo.length > 0) { for(var index in layoutInfo) { var temp = layoutInfo[index]; if(temp.division == division) { return temp.value_data; } } } else { return ''; } } else { return ''; } } // 레이아웃을 입력/수정한다. function com_layoutUpdate(division, value_data, callback) { var searchValue = {}; var operator_info = localStorage.getItem('current_user_info'); operator_info = JSON.parse(operator_info); searchValue.serviceName = '/BTLMS/METIS/alpas_view_layout/save_and_update.do'; searchValue.division = division; searchValue.user_key = operator_info.REC_KEY; searchValue.value_data = value_data; $.ajax({ type: "POST", url: "/METIS/Loan/CommonRequest.do", dataType: "json", async : true, data:searchValue, success: function(data) { var obj = data; if(obj.status == "SUCCESS") { // //20.03.13 이현주 추가 - localStorage에 저장. // console.log('update', obj); localStorage.setItem('LayoutOptionInfo', JSON.stringify(obj.list)); if(undefined == callback) { onlyMessage('설정이 저장되었습니다.'); return; } else { if(typeof callback === 'function') callback(); } } else { // number_focus 관련 오류 발생으로 제거함 21/05/20 권명호 //onlyMessage(obj.statusDescription, 1, number_focus); onlyMessage(obj.statusDescription); } } }); } //22.11.21 레이아웃(display여부)을 입력/수정한다. function com_layoutUpdate_displayYN(division, value_data, callback) { var searchValue = {}; var operator_info = localStorage.getItem('current_user_info'); operator_info = JSON.parse(operator_info); searchValue.serviceName = '/BTLMS/METIS/alpas_view_layout/save_and_update.do'; searchValue.division = division; searchValue.user_key = operator_info.REC_KEY; searchValue.value_data = value_data; $.ajax({ type: "POST", url: "/METIS/Loan/CommonRequest.do", dataType: "json", async : true, data:searchValue, success: function(data) { var obj = data; if(obj.status == "SUCCESS") { localStorage.setItem('LayoutOptionInfo', JSON.stringify(obj.list)); if(undefined == callback) { //이미 기본 레이아웃에서 저장성공 메세지 띄우기 때문에 display여부는 생략. 오류 메시지가 있을 경우만 대응 //onlyMessage('설정이 저장되었습니다.'); return; } else { callback(); } } else { onlyMessage(obj.statusDescription); } } }); } // 레이아웃 정보를 삭제 또는 초기화 한다. // division이 없으면 전체 자료를 초기화 한다. function com_layoutDelete(division, callback) { var searchValue = {}; var operator_info = localStorage.getItem('current_user_info'); operator_info = JSON.parse(operator_info); searchValue.serviceName = '/BTLMS/METIS/alpas_view_layout/delete.do'; searchValue.division = division; searchValue.user_key = operator_info.REC_KEY; $.ajax({ type: "POST", url: "/METIS/Loan/CommonRequest.do", dataType: "json", async : true, data:searchValue, success: function(data) { var obj = data; if(obj.status == "SUCCESS") { console.log('delete', obj); //20.03.13 이현주 추가 - localStorage에 저장. localStorage.setItem('LayoutOptionInfo', JSON.stringify(obj.list)); if(undefined == callback) { onlyMessage('레이아웃이 수정되었습니다.'); return; } else { callback(); } } else { onlyMessage(obj.statusDescription, 1, number_focus); } } }); } //20.02.18 이현주 - 기존에 쓰이던 등록번호 형식에 맞게 변환하는 함수인 MakeRegNoSpaceToZero 공통파일에 추가. function common_setRegNo(manage_code,reg_no,callback) { var flag = false; var param = {}; param.manage_code = (manage_code != undefined && manage_code != null && manage_code != "" ) ? manage_code : ""; param.reg_no = (reg_no != undefined && reg_no != null && reg_no != "" ) ? reg_no : ""; // 바코드 첫글자가 $또는 #인경우 앞에서 6자리는 제외한다. // if ( param.reg_no.indexOf("#") == 0 || param.reg_no.indexOf("$") == 0 ) { // param.reg_no = param.reg_no.substr(7); // } param.reg_no = removeSharpRegNo(param.reg_no); $.ajax({ type : "POST", url : "/METIS/ILLMng/MakeRegNoSpaceToZero.do", dataType: "json", async : false, data : param, success : function(data) { if(data.status == "SUCCESS") { // 파일마다 등록번호 자릿수 변경 후 실행야하는게 달라서 callback함수를 인자로 받고 // 통신 성공시에만 callback함수를 실행한다. if (callback != undefined && callback != null && callback != "") { callback(data.reg_no ); } } } }); } // 20.02.18 이현주 - 미들웨어 등록번호 변환하는 경우가 많아서 화면에서는 $,# 포함시 제거만 해주면되는데 코드가 길어져서 // 아예 공통함수에 추가. function removeSharpRegNo(regno){ if(!regno){ return ""; }else{ if ( regno.indexOf("#") == 0 || regno.indexOf("$") == 0 ) { return regno.substr(7); } else { return regno; } } } // 20.01.15 jiyeong HTML을 EXCEL로 변환 (CHROME 환경에서 동작) /** * 사용 라이브러리 : /excelexport/jquery.techbytarun.excelexportjs.js * @param {string} id - click 이벤트 id * @param {string} print_id - 엑셀 출력 영역 id * @param {string} title - 엑셀 파일명 */ function htmlToExcel(id,print_id,title){ // 20.02.21 초기 jsp 파일 다운로드되는 현상 방지. $('#'+id).attr('download','').attr('href','').attr('target', ''); var uri = $("#"+print_id).excelexportjs({ containerid: print_id , datatype: 'table' , returnUri: true }); // 파일명 지정 $('#'+id).attr('download', title+'.xls').attr('href', uri).attr('target', '_blank'); } // 20.02.28 이현주 - IE는 지원안하는 기능이 꽤 있어서 IE 브라우저 인지 확인하는 함수 공통에 추가 function ieBrowserOrNot(){ var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE"); // IE 10 이하 var trident = ua.indexOf("Trident/"); // IE 11 if (msie > 0 || trident > 0) { return true; } else { return false; } } // 공백을 제거한 문자를 넘겨준다. function removeBrank(str) { if(undefined != str && null != str && "" != str) { str = strReplaceAll(str," ",""); return str; } else { return str; } } // 20.04.07 jiyeong 숫자만 입력 (한글포함) // html onkeyup="this.value=inputNumber(this.value);" function inputNumber(str_value){ return str_value.replace(/[^0-9]/gi, ""); } // 전달받은 값이 undefined이면 해당 값 전달 function getUndefinedData(data) { if(data != undefined && null != data) { return data; } else { return ""; } } function getRelease_note(){ var mcode = getManageCode(); var appurl = $("#appserverurl").val(); /*window.location = appurl+"/BTLMS/METIS/File/releaseNoteDownload.do?" + "networkadapterid=1&operator_manage_code="+mcode+"&operator_id=" + mcode;*/ window.location.href = "/METIS/releaseNote/releaseNote.html"; } // 환경설정 동기화 function propertys_reload(){ confirmMessage("설정 정보를 현재 기준으로 다시 적용합니다.
    진행하시겠습니까?",function(e, flag){ if(flag == true){ var param = {}; param.sendUrl = "/BTLMS/METIS/Login/envRefresh.do?test=1"; $.ajax({ type: "POST", url: "/METIS/Common/MeddleWarePass.do", dataType: "json", async : false, data:param, success: function(data) { onlyMessage("처리완료"); } }); } }); } function isEmptyObj(obj){ if(obj == undefined || typeof obj != "object"){ return true; } let keys = Object.keys(obj); if(keys.length === 0){ return true; }else{ return false; } } //파일다운로드 공통함수 function fileDownLoad(fileName){ let mcode = getManageCode(); console.log(fileName); $.ajax({ url:"/METIS/CommonFile/fileDownload.do", type:"POST", xhrFields: { responseType: 'blob' }, data:{operator_manage_code : mcode, operator_id : mcode , fileName : fileName}, }).done(function(data,textStatus,jqXhr){ if(!data){ return; } try{ let blob = new Blob([data],{type:jqXhr.getResponseHeader("content-type") }); let file_name = getFileName(jqXhr.getResponseHeader("content-disposition")); file_name = decodeURI(file_name); if(window.navigator.msSaveOrOpenBlob){ window.navigator.msSaveOrOpenBlob(blob, file_name); }else{ let link = document.createElement('a'); let url = window.URL.createObjectURL(blob); link.href = url; link.target = '_self'; if (file_name) link.download = file_name; document.body.append(link); link.click(); link.remove(); window.URL.revokeObjectURL(url); } }catch(e){ console.error(e); } }) } function getFileName (contentDisposition) { var fileName = contentDisposition .split(';') .filter(function(ele) { return ele.indexOf('filename') > -1 }) .map(function(ele) { return ele .replace(/"/g, '') .split('=')[1] }); return fileName[0] ? fileName[0] : null } function regExp(){ //특수문자 검증 start var str = "2011-12-27"; var regExp = /[\{\}\[\]\/?.,;:|\)*~`!^\-_+<>@\#$%&\\\=\(\'\"]/gi if(regExp.test(str)){ //특수문자 제거 var t = str.replace(regExp, "") alert("특수문자를 제거했습니다. ==>" + t) }else{ alert("정상적인 문자입니다. ==>" + str) } //특수문자 검증 end } //엑셀 반출 function getGridDataExport(grid_id, colModel, printType, grid_type){ let rows = []; if(printType==undefined || printType=="all" || printType=="" ){ if(grid_type == 'jqgrid'){ rows = $(grid_id).jqGrid("getGridParam","data"); } else{ rows = $(grid_id).jqxGrid("getrows"); } }else{ if(grid_type == 'jqgrid'){ var rowid=$(grid_id).jqGrid("getGridParam","selarrrow"); for(var i=0; i< rowid.length;i++){ rows.push($(grid_id).getLocalRow(rowid[i])); } } else{ var rowindexes = $(grid_id).jqxGrid('getselectedrowindexes'); for(var i in rowindexes){ rows.push($(grid_id).jqxGrid('getrowdata', rowindexes[i])); } } } console.dir(rows); // 현재 컬럼중에 보여지고 있는 값만 추출 let temp_columns = colModel; console.dir(temp_columns); let header = []; for(let index in temp_columns){ let one = temp_columns[index]; if(one.hidden == true){ continue } else{ header.push(one); } } let printData = []; for(let index in rows){ let one = rows[index]; let current_data = {}; for(let index2 in header){ let header_one = header[index2]; let header_datafild = ""; let header_text = ""; if(grid_type == 'jqgrid'){ header_datafild = header_one.name; header_text = header_one.label; } else{ header_datafild = header_one.datafield; header_text = header_one.text; } if(header_text == "No"){ current_data[" " +header_text] = Number(index) + 1; }else{ current_data[" " + header_text] = one[header_datafild]; } } printData.push(current_data); } exportExcel(printData); } //공통 //참고 출처 : https://redstapler.co/sheetjs-tutorial-create-xlsx/ function s2ab(s) { var buf = new ArrayBuffer(s.length); //convert s to arrayBuffer var view = new Uint8Array(buf); //create uint8array as viewer for (var i=0; i로 변경할때 다시 원래대로 돌아가게 된다.( [<] → [<] ) * 2. Controller에서 js로 return할 경우 xss적용 전으로 다시 되돌아간다. * 3. response object에 대하여 재귀적으로 모든 항목에 대해 filter처리를 할 경우 잠재적인 오류와 성능 issue 발생 가능성이 있음. * * @param dirty : String * */ function xssFilter(dirty) { if(typeof dirty != 'string') { console.debug(dirty + " is not string. ") return dirty; } // console.debug("before text : " + dirty); dirty = strReplaceAll(dirty ,"<","<"); dirty = strReplaceAll(dirty ,">",">"); // console.debug("after text : " + dirty); return dirty; } /* * SMART-UI toast 공동 함수 * * position = 띄울 위치 {"top-left" | "top-right" | "bottom-left" | "bottom-right"} 화면 정중앙 필요시 감싼 container 중앙배치 필요 * type ={"info" | "warning" | "success" | "error" | "mail" | "time" | null} 표시할 알림 종류 * modal = 중앙 배치 여부 defalut false * value = 띄울 메시지 * showCloseButton = 닫기 표시 defalut true * autoClose = 자동 닫기 defalut true * autoCloseDelay = 닫히는 대기 시간 밀리초 defalut :1초 * autoOpen = 로드후 바로 띄우기 defalut :사용안함 * itemClass = 토스트 메세지 class주입 커스텀 필요시 사용 defalut :사용안함 * https://www.htmlelements.com/docs/toast/#javascript 사용법 DOCS */ function CreateToastElements(){ Smart('#toast', class { get properties() { return { position: "bottom-left", type : "mail", showCloseButton :true, autoClose :true, autoCloseDelay :3000, } } }); } function createCustomToastElements(id, customProperty) { Smart(`${id}`, class { get properties() { return { position : customProperty.hasOwnProperty('position') ? customProperty.position : "bottom-left", type : customProperty.hasOwnProperty('type') ? customProperty.type : "mail", modal : customProperty.hasOwnProperty('modal') ? customProperty.modal : false, // 중앙 배치 여부 showCloseButton : customProperty.hasOwnProperty('showCloseButton') ? customProperty.showCloseButton : true, autoClose : customProperty.hasOwnProperty('autoClose') ? customProperty.autoClose : true, autoCloseDelay : customProperty.hasOwnProperty('autoCloseDelay') ? customProperty.autoCloseDelay : 3000, } } }); return document.querySelector(`${id}`); } function OpenToastMessage(message,showtime,closeCallback){ toast.open(); toast.value = message; //toast.autoCloseDelay = 3000 //closefunction if(closeCallback !=undefined || closeCallback != null || closeCallback == "undefined"){ closeCallback(); } } function openCustomToastMessage(toast, prop) { if(prop.hasOwnProperty('itemClass')) toast.itemClass = prop.itemClass; toast.open(prop.msg); } // 이용자 사진만 따로 조회하는 함수 function GetUserPicture(aplObj){ $('#loading_flag').val(false); let user_picture; let param = {}; let returnFlag = false; param.user_key = aplObj.user_key; if(undefined == aplObj.async){ aplObj.async = true; } //이용자 이미지 사용 여부에 따른 조회 //회원증 출력 요청 쪽에서 기본 이미지 설정 없이 요청 ==> 이용자사진 사용 안함 옵션에 회원증 사진 형식 사용시 에러 대응 - 김길준 작업 if((USE_USER_IMAGE == undefined || USE_USER_IMAGE == "N") && aplObj.defalutImg){ let image_tag = aplObj.targetTag; if(image_tag) { image_tag.prop("src",aplObj.defalutImg); image_tag.prop("width","60"); image_tag.prop("height","61"); } returnFlag = false; if(aplObj.callBack){ aplObj.callBack(); } $('#loading_flag').val(true); return; } $.ajax({ type: "POST", url: "/METIS/UserMng/getUserPictureInfo.do", dataType: "json", data:param, async:aplObj.async, success: function(data) { if(aplObj.justPicture){ user_picture = data.user_picture; }else{ let imgTag = aplObj.targetTag; user_picture = data.user_picture; if(data.status == "SUCCESS"){//이미지 있을 때 imgTag.prop("src","data:image/gif;base64,"+data.user_picture); imgTag.prop("width","120"); imgTag.prop("height","140"); user_picture = data.user_picture; returnFlag = true; }else{//이미지가 존재하지 않을 때 imgTag.prop("src",aplObj.defalutImg); imgTag.prop("width","60"); imgTag.prop("height","61"); returnFlag = false; } if(aplObj.callBack){ aplObj.callBack(data.user_picture); } } $('#loading_flag').val(true); } }); if(aplObj.restorationPictureYN && returnFlag){ return user_picture; }else if(aplObj.justPicture){ return user_picture; }else{ return; } } // 공통 로그 사용 function alpas_console_log(obj){ if(debug_mode == "Y") { console.log(obj); } } //공통 로그 사용 function alpas_console_dir(obj){ if(debug_mode == "Y") { console.dir(obj); } } //영수증 출력 후 업데이트 function receipt_Print_update(obj){ param ={}; param.rec_key = obj.rec_key?obj.rec_key :obj.REC_KEY; param.receipt_key = obj.receipt_key $.ajax({ type: "POST", url: "/METIS/LateFee/printReceiptCheck.do", dataType: "json", async : true, data:param, success: function(data) { if(data.status !="SUCCESS"){ onlyMessage(data.statusDescription); } } }); } //관리구분 다중 선택 박스 생성기 추가 김길준 작업 2023.05.18 function multicalManageSearch_init(){ var statistic_manage_code_array = getCdCodeInfo('관리구분'); var select_manage_code = []; for(var index in statistic_manage_code_array) { var current_colum_obj = {}; var temp = statistic_manage_code_array[index]; if(temp.description == "적용안함") { continue; } else { current_colum_obj.label = temp.description; current_colum_obj.name = temp.code; select_manage_code.push(current_colum_obj); } } // 관리구분을 가다나 순으로 정렬하기 위해 추가 // 옵션처리 되어 있음 23/06/02 권명호 if(undefined != MANAGE_CODE_SORT_YN && MANAGE_CODE_SORT_YN == 'Y'){ // 설명값기준 가나다순 정렬 옵션 select_manage_code.sort(function(a, b) { const upperCaseA = a.label; const upperCaseB = b.label; if(upperCaseA == "적용안함") return 1; if(upperCaseB == "적용안함") return 1; if(upperCaseA > upperCaseB) return 1; if(upperCaseA < upperCaseB) return -1; if(upperCaseA === upperCaseB) return 0; }); } $("#multicalManageSearch").jqxComboBox({ checkboxes: true, source: select_manage_code, displayMember: "label",template: "primary", valueMember: "name", width: 200, height: 30, disabled: false}); let selectBoxOptions = $("#multicalManageSearch").jqxComboBox('getItems'); //현재 도서관 자동 선택 selectBoxOptions.forEach(function(idx){ if(idx.value == CURRENT_MANAGE_CODE){ $("#multicalManageSearch").jqxComboBox('checkItem', idx ); } }) $("#multicalManageSearch").on('close', function (event) { var items = $("#multicalManageSearch").jqxComboBox('getCheckedItems'); var temp_input = $("#multicalManageSearch .jqx-combobox-input"); console.log(items); if(items.length > 1) { temp_input[0].value = `${items[0].label} 외 ${items.length -1}건`; } else if(items.length == 1){ temp_input[0].value = `${items[0].label}`; } else { temp_input[0].value = ""; } }); } /** * 2023.05.25 김요한 utf-8 문자열 길이 계산 * */ function lengthInUtf8Bytes(str) { var m = encodeURIComponent(str).match(/%[89ABab]/g); return str.length + (m ? m.length : 0); } // 2023.06.16 김요한 '상세검색 후 창닫기' 조건 함수 function isModalOption(modalOption) { let modal_option = modalOption; const default_option = 'Y'; if(typeof modal_option == 'undefined' || modal_option == null || modal_option == ''){ modal_option = default_option; } if (modal_option !== 'Y' && modal_option !== 'N') { modal_option = default_option; } if (modal_option === 'Y') { return true; }else{ return false; } } /** * 파일 업로드 유효성 체크 * file : 파일객체 * extensions : 허용하려는 파일 확장자. "|"로 구분해서 여러개 입력 * type : 여러 확장자를 묶어서 지정할 경우 (ex. 이미지, 문서, 범용 ...) * * return : false = 업로드 허용 * */ function notUploadable(file, extensions, type) { if(file.size > 5242880) { return '5MB 이상의 파일은 업로드 할 수 없습니다.'; } if(type != undefined) { if(type == 'normal') { extensions = 'jpg|jpeg|bmp|png|txt|docx|xlsx|xls|hwp|pdf'; } else if(type == 'image') { extensions = 'jpg|jpeg|bmp|png'; } else if(type == 'doc') { extensions = 'txt|docx|xlsx|xls|hwp|pdf'; } } if(extensions != undefined) { const extensionList = extensions.split("|"); for(let i=0 ; i < extensionList.length; i++) { if(file.name.toLowerCase().endsWith(extensionList[i])) { return false; } if(i == extensionList.length-1) { // 어느 것에도 해당하지 않으면 return '다음 확장자만 업로드가 허용됩니다.[' + extensionList + ']'; } } } return false; } /* * 이용자,책 파일검색시 어떤조건으로 검색할지 선택 * */ function openPopupFileSearch(division,fileSearchFnc){ $.ajax({ type: "POST", url: "/METIS/view/CommonPage/FileSearchPopup/FileSearchPopup.jsp", dataType: "html", async : true, data:{}, success: function(data) { fileSearchPopUpId = openDivPopupHtml(data); initSelectBox(division,fileSearchFnc); } }); } // 24-01-17 김요한 쓰로틀 함수 추가 function throttle(func, wait, options = {}) { let timeout, context, args, result; let previous = 0; const now = Date.now || function() { return new Date().getTime(); }; const later = function() { previous = options.leading === false ? 0 : now(); timeout = null; result = func.apply(context, args); if (!timeout) context = args = null; }; const throttled = function() { let _now = now(); if (!previous && options.leading === false) previous = _now; let remaining = wait - (_now - previous); context = this; args = arguments; if (remaining <= 0 || remaining > wait) { if (timeout) { clearTimeout(timeout); timeout = null; } previous = _now; result = func.apply(context, args); if (!timeout) context = args = null; } else if (!timeout && options.trailing !== false) { timeout = setTimeout(later, remaining); } return result; }; throttled.cancel = function() { clearTimeout(timeout); previous = 0; timeout = context = args = null; }; return throttled; } function convertLineBreaks(str) { if(!str) return ""; return str.replace(/\r\n/gi,"
    "); } // ALPAS_VIEW_LAYOUT_TBL에서 가져온 데이터 division 컬럼 값으로 필터링 function getLayoutData (data, divisionName) { if (!data || !divisionName) { return; } let filterData = data.filter(data => data.division === divisionName); if (filterData) { return JSON.parse(filterData[0].value_data); } else { return; } } // 트리거 발생 함수 function trigger(el, eventType) { if (typeof eventType === 'string' && typeof el[eventType] === 'function') { el[eventType](); } else { const event = typeof eventType === 'string' ? new Event(eventType, {bubbles: true}) : eventType; el.dispatchEvent(event); } } // 로컬 옵션을 가져와서 파싱한 후 반환한다. function getLocalOption(optionName) { if (!optionName) { return; } let getJsonLocalOption = localStorage.getItem(optionName); let getParsingLocalOption; if (getJsonLocalOption) { getParsingLocalOption = JSON.parse(getJsonLocalOption); return getParsingLocalOption; } else { return; } } // 로컬 옵션을 저장한다. function saveLocalOption(optionName, keyName, preData, saveData) { if (!optionName || !keyName) { return; } if (saveData == undefined) { return; } let key = keyName; let option = optionName; if (preData) { preData[key] = saveData; localStorage.setItem(optionName, JSON.stringify(preData)); } else { let option = {}; option[key] = saveData; localStorage.setItem(optionName, JSON.stringify(option)); } } // 24.08.07 최연희 - 그리드 정렬 이후 특정 row를 맨 아래에 고정 function moveToLastRow(targetObj, gridObj) { const key = Object.keys(targetObj)[0]; const value = targetObj[key]; if(gridObj instanceof EcoGrid) { const allRowData = gridObj.getAllRowDatas(); if(!Array.isArray(allRowData) || allRowData.length === 0) return; const targetRow = allRowData.filter(x => x[key] === value); const targetIndex = allRowData.findIndex(x => x[key] === value); if(targetRow.length === 0 || targetIndex < 0) return; const removeRowId = $(gridObj._gridid).jqGrid('getDataIDs')[targetIndex]; // targetRow 삭제 $(gridObj._gridid).jqGrid('delRowData', removeRowId); // 맨 아래에 targetRow 추가 $(gridObj._gridid).jqGrid('addRowData', allRowData.length - 1, targetRow); } else if(gridObj instanceof EcoGrid_jqx) { // 추후 필요할 시 구현 } else { return; } }