125 lines
3.5 KiB
Plaintext
125 lines
3.5 KiB
Plaintext
<!DOCTYPE html>
|
|
|
|
<%--
|
|
/**
|
|
* @Class Name : PopAssetDtlYn.jsp
|
|
* @Description : 자산상세 선택 팝엄 화면
|
|
* @Modification Information
|
|
* @
|
|
* @ 수정일 수정자 수정내용
|
|
* @ ---------- -------- ---------------------------
|
|
* @ 2025.08.09 나혁제 최초 생성
|
|
*
|
|
* @author urp 인프라본부 나혁제
|
|
* @since 2025.08.09
|
|
* @version 1.0
|
|
* @see
|
|
*
|
|
*/
|
|
--%>
|
|
|
|
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
|
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
|
|
<c:set var="pageTitle"><spring:message code="comCopSecDrm.deptSearchPopup.title"/></c:set>
|
|
|
|
<title>${pageTitle} <spring:message code="title.list" /></title><!-- 부서조회팝업 목록 -->
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<!-- 시간처리 -->
|
|
<script type="text/javascript" src="${ctx}/js/js-calendar/jquery-ui-timepicker-addon.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="${ctx}/css/jquery-ui-timepicker-addon.css">
|
|
|
|
<script type="text/javaScript" language="javascript" defer="defer">
|
|
|
|
//----------------------------------------
|
|
// 화면 초기화
|
|
// ----------------------------------------
|
|
$(document).ready(function()
|
|
{
|
|
});
|
|
|
|
//----------------------------------------
|
|
// 확인
|
|
// ----------------------------------------
|
|
function fncConfirem()
|
|
{
|
|
var strAssetDtlYn = $("input[name='rd_AssetDtlYn']:checked" ).val();
|
|
parent.fncAssetDtlChoiceCompleted(strAssetDtlYn);
|
|
parent.$('.ui-dialog-content').dialog('close');
|
|
}
|
|
|
|
//----------------------------------------
|
|
// 닫기
|
|
// ----------------------------------------
|
|
function fncClose()
|
|
{
|
|
parent.$('.ui-dialog-content').dialog('close');
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<!-- javascript warning tag -->
|
|
<noscript class="noScriptTitle"><spring:message code="common.noScriptTitle.msg" /></noscript>
|
|
<form:form name="PopCompleted" action="" method="post">
|
|
|
|
<!-- main title -->
|
|
<div class="main_titWrap">
|
|
<h3>보고서 선택</h3>
|
|
</div>
|
|
|
|
<!-- Form 테이블 :start -->
|
|
<div class="bbs_view">
|
|
|
|
<!--등록폼 -->
|
|
<table class="tbl_form" summary="<spring:message code="common.summary.list" arguments="등록" />">
|
|
<caption>처리완료</caption>
|
|
<colgroup>
|
|
<col style="width: 20%;">
|
|
<col style="width: *%;">
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<th> 자산상세 인쇄여부 </th>
|
|
<td>
|
|
<label class='radio_label'>
|
|
<input class='' type='radio' name='rd_AssetDtlYn' id='rd_AssetDtlYn1' value="Y" checked> 예
|
|
<span class="radio_icon"></span>
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<label class='radio_label'>
|
|
<input class='' type='radio' name='rd_AssetDtlYn' id='rd_AssetDtlYn2' value="" > 아니오
|
|
<span class="radio_icon"></span>
|
|
</label>
|
|
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="btn_group">
|
|
<button type="button" class="btn-function" id="btnConfirm" onclick="javascript:fncConfirem()" title="확인">확인</button>
|
|
<button type="button" class="btn-cancel" id="btnCancel" onclick="javascript:fncClose()" title="닫기">닫기</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</form:form>
|