File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
2023-06-22
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%
/**
* @Class Name : MsgResultCodeRegist.jsp
* @Description : 전송사 결과 코드 화면
* @Modification Information
* @
* @ 수정일 수정자 수정내용
* @ ------- -------- ---------------------------
* @ 2022.03.23 우영두 최초 생성
*
* @author 개발팀
* @since 2022.03.23
* @version 1.0
* @see
*
*/
%>
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="ec" uri="/WEB-INF/tld/ecnet_tld.tld"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>전송사 결과 코드 등록</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javaScript" language="javascript">
/* pagination 페이지 링크 function */
function goList(){
location.href="<c:out value='/uss/ion/msg/MsgResultCodeList.do'/>";
}
/* 등록시 값 확인 */
function fn_Regist() {
frm = document.writeForm;
if(frm.resultCode.value==""){
if(frm.resultCode2.value=="") {
alert("결과코드2을 입력해 주십시오");
frm.resultCode2.focus();
return false;
}
}
if(frm.resultCodeTxt.value=="") {
alert("결과 내용을 입력해 주십시오");
frm.resultCodeTxt.focus();
return false;
}
frm.action="<c:url value='/uss/ion/msg/insertMsgResultCode.do'/>";
frm.submit();
}
</script>
</head>
<body>
<form name="writeForm" id="writeForm" method="post">
<div class="contWrap">
<div class="pageTitle">
<div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div>
<h2 class="titType1 c_222222 fwBold">전송사 결과 코드 등록</h2>
<p class="tType6 c_999999">전송사 결과 코드 등록 할 수 있습니다.</p>
</div>
<div class="pageCont">
<table class="tbType2">
<colgroup>
<col style="width: 20%">
<col style="width: 80%">
</colgroup>
<tbody>
<tr>
<th><span class="reqArea">전송사구분</span></th>
<td colspan="3">
<ec:select codeId="ITN019" name="agentCode" id="agentCode" css="class='select'"/>
</td>
</tr>
<tr>
<th><span class="reqArea">결과코드 1</span></th>
<td colspan="3">
<input type="text" id="resultCode" name="resultCode" value=""/>
</td>
</tr>
<tr>
<th><span class="reqArea">결과코드 2</span></th>
<td colspan="3">
<input type="text" id="resultCode2" name="resultCode2" value=""/>
</td>
</tr>
<tr>
<th><span class="reqArea">결과 내용</span></th>
<td colspan="3">
<textarea id="resultCodeTxt" name="resultCodeTxt" class="textarea" cols="75" rows="5" title="결과 내용" style="width:84%;"></textarea>
</td>
</tr>
<tr>
<th>코드명</th>
<td colspan="3">
<input type="text" id="resultCodeNm" name="resultCodeNm" value=""/>
</td>
</tr>
</tbody>
</table>
<div class="btnWrap">
<input type="button" class="btnType1 bg_888888" value="목 록" onclick="location.href='/uss/ion/msg/MsgResultCodeList.do'">
<input type="button" class="btnType1" value="저 장" onclick="fn_Regist(); return false;">
</div>
</div>
</div>
</form>
</body>
</html>