원격 브랜치에서 eapim-online jsp 관련 파일 가져오기
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<%@ page import="java.util.*"%>
|
||||
<%@ page language="java" contentType="text/html;charset=utf-8"%>
|
||||
<%@ page import="com.kbstar.eai.common.businessday.*"%>
|
||||
|
||||
<%
|
||||
BusinessDayManager manager = BusinessDayManager.getInstance();
|
||||
Map<String, BusinessDayVO> messages = manager.getAllBusinessDays();
|
||||
%>
|
||||
<html>
|
||||
<head>
|
||||
<title>일자전환 변경대상 정보</title>
|
||||
<script>
|
||||
function doAction() {
|
||||
document.frm.submit();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<p style="font-size:12pt;">
|
||||
<b>일자전환 변경대상 정보</b> <br><br>
|
||||
</p>
|
||||
<form name="frm" action="">
|
||||
<table width="450" border=0 bgcolor='black' cellpadding="1" cellspacing="1">
|
||||
<tr bgcolor='white'>
|
||||
<td align='center' width='250' bgcolor="#ccccff">EAI 서비스코드</td>
|
||||
<td align='center' width='200' bgcolor="#ccccff">전문유효일자</td>
|
||||
</tr>
|
||||
<%
|
||||
Iterator it = messages.keySet().iterator();
|
||||
for(int i=0;it.hasNext();i++) {
|
||||
BusinessDayVO vo = (BusinessDayVO)messages.get((String)it.next());
|
||||
%>
|
||||
<tr bgcolor='white'>
|
||||
<td align='center'><%= vo.getEAISvcName() %></td>
|
||||
<td align='center'><%= vo.getTelgmValdYmd() %></td>
|
||||
</tr>
|
||||
<% } %>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user