You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
4.5 KiB
140 lines
4.5 KiB
|
|
<% |
|
/************************************************************@@ |
|
* Program Name : doc_form_view.jsp |
|
* Description : /집계자/내문서함/진행함/양식 보기 |
|
* Author : 강원중 |
|
* Create Date : 2004.10.15 |
|
* History : |
|
@@************************************************************/ |
|
%> |
|
|
|
<%@ page contentType="text/html; charset=euc-kr" |
|
import="java.net.URLEncoder" |
|
import="kr.co.kihyun.beans.user.HttpSSOLogin" |
|
import="kr.co.kihyun.lang.MLong" import="kr.co.kihyun.moumi.Moumi" |
|
import="kr.co.kihyun.moumi.doc.MDoc" |
|
import="kr.co.kihyun.beans.totsys.report.Report"%> |
|
|
|
<%@ include file="/totsys/common/inc/sec/secure.inc.jsp"%> |
|
|
|
<% |
|
try{ |
|
/********** session내의 userId **********/ |
|
String usID = HttpSSOLogin.getLoginID(request); |
|
|
|
/****** Parameter ******/ |
|
Long docID = MLong.parseLong(request.getParameter("docID"),null); |
|
|
|
/*********** session setup ************/ |
|
session.setAttribute("formConTagetURL", "/totsys/totper/mydocbox/prssbox/doc_form_view.jsp"); |
|
|
|
/****** all, send report ******/ |
|
Report report = new Report(); |
|
int allReportCount = report.getAllCount(docID); |
|
int sendReportCount = report.getSendCount(docID); |
|
%> |
|
<HTML> |
|
<HEAD> |
|
<TITLE><%=Moumi.getTitle()%></TITLE> |
|
<link rel="stylesheet" href="/totsys/common/css/text.css" |
|
type="text/css"> |
|
<script src="/totsys/common/js/rollover.js"></script> |
|
<link rel="stylesheet" href="/totsys/common/css/kecttep.css" |
|
type="text/css"> |
|
<link rel="stylesheet" href="/totsys/common/css/tabs.css" |
|
type="text/css"> |
|
<link rel="stylesheet" href="/totsys/common/css/SquareButtons.css" |
|
type="text/css"> |
|
<script language="javascript"> |
|
function formContentModify(){ |
|
location.href="./form_content_modify.jsp?docID=<%=docID%>&tmp=1"; |
|
} |
|
|
|
function formPreference(){ |
|
location.href="./doc_form_modify.jsp?docID=<%= docID %>&tmp=1"; |
|
} |
|
|
|
function modify(){ |
|
location.href="/totsys/sysadm/prssbox/doc_modify.jsp?docID=<%= docID %>&url=mmprss"; |
|
} |
|
|
|
function formView(){ |
|
location.href="/totsys/sysadm/prssbox/doc_form_view.jsp?docID=<%=docID%>"; |
|
} |
|
|
|
function reports(){ |
|
location.href="/totsys/sysadm/prssbox/reports/report_list.jsp?docID=<%= docID %>"; |
|
} |
|
|
|
function totReports(){ |
|
location.href="/totsys/sysadm/prssbox/tot_reports/total_reports.jsp?docID=<%= docID %>"; |
|
} |
|
|
|
function totReport(){ |
|
location.href="/totsys/sysadm/prssbox/tot_report/total_report.jsp?docID=<%= docID %>"; |
|
} |
|
</script> |
|
</HEAD> |
|
|
|
<body style='' BGCOLOR="#FFFFFF" LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 |
|
MARGINHEIGHT=0> |
|
|
|
<div> |
|
<table width="100%" border="0" cellpadding="0" cellspacing="0"> |
|
<jsp:include page="/totsys/common/inc/totper/top/top.jsp" flush="true" /> |
|
<jsp:include page="/totsys/common/inc/title/title.jsp" flush="true" /> |
|
</table> |
|
</div> |
|
|
|
<div id="header"> |
|
<ul id="primary"> |
|
|
|
<li><a href="#" onclick="modify();">기본정보</a></li> |
|
<li><span class="kecttep_menu_focous">양식정보</span></li> |
|
<li><a href="#" onclick="reports();">제출현황</a></li> |
|
<li><a href="#" onclick="totReports();">집계현황</a></li> |
|
<li><a href="#" onclick="totReport();">집계표</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div id="main"> |
|
<div id="contents"> |
|
<table width="100%" border="0" cellpadding="0" cellspacing="0"> |
|
<tr class="toolbar"> |
|
<td align="left"> |
|
<table border="0" cellspacing="0" cellpadding="0"> |
|
<tr> |
|
<td><a class="simplebutton" href="#" |
|
onclick="javacscript:formContentModify();"><span class="modify"><%= Moumi.getMessageBundle().getString("moumi.message.button.formCheck") %></span></a> |
|
</td> |
|
<td class="kecttep_button_td"><a class="simplebutton" href="#" |
|
onclick="javascript:formPreference();"><span class="modify"><%= Moumi.getMessageBundle().getString("moumi.message.button.formPreference") %></span></a> |
|
</td> |
|
</tr> |
|
</table> |
|
</td> |
|
</tr> |
|
</table> |
|
<table width="100%" border="0" cellpadding="0" cellspacing="0"> |
|
<!------------------------------- form view start -------------------------------> |
|
<jsp:include page="/totsys/common/inc/documents/tot_doc/form_view.jsp" |
|
flush="true"> |
|
<jsp:param name="docID" value="<%= docID %>" /> |
|
</jsp:include> |
|
<!------------------------------- form view end -------------------------------> |
|
</table> |
|
</div> |
|
</div> |
|
|
|
<!------------------------------- top menu start -----------------------------> |
|
<%@ include file="/totsys/common/inc/buttom/buttom.jsp"%> |
|
<!------------------------------- top menu end -------------------------------> |
|
</BODY> |
|
</HTML> |
|
<% |
|
}catch(Exception ex){ex.printStackTrace(); |
|
out.println(kr.co.kihyun.text.html.ServletUtil.getJavaScript("location='/servlet/kr.co.kihyun.beans.user.HttpSSOLogin?mode=logout';")); |
|
}finally{ |
|
} |
|
%> |