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.
110 lines
3.7 KiB
110 lines
3.7 KiB
|
|
<% |
|
/************************************************************@@ |
|
* Program Name : doc_list.jsp |
|
* Description : /집계자/내문서함/등록함/문서 목록 |
|
* Author : 강원중 |
|
* Create Date : 2004.10.11 |
|
* History : |
|
@@************************************************************/ |
|
%> |
|
|
|
<%@ page contentType="text/html; charset=UTF-8" |
|
import="kr.co.kihyun.lang.MInteger" |
|
import="kr.co.kihyun.moumi.report.MReport"%> |
|
|
|
<% |
|
try{ |
|
/******* Parameter *********/ |
|
int prss = MInteger.parseInt(request.getParameter("prss"));%> |
|
|
|
<!---- sub menu 시작 ----> |
|
<td align="right"> |
|
<table height="50" border="0" cellpadding="0" cellspacing="0"> |
|
<tr> |
|
<%//접수함(배정함) |
|
if(MReport.ASSIGN == prss){%> |
|
<td width="57" align="center" valign="bottom" |
|
style="padding-bottom: 7;" background="images/s_menubg1.jpg"><a |
|
href="/totsys/repoper/mydocbox/acceptbox/report_list.jsp"><font |
|
color="#FFFFFF"><b>접수함</b></font></a></td> |
|
<%}else{%> |
|
<td width="57" align="center" valign="bottom" |
|
style="padding-bottom: 7;"><a |
|
href="/totsys/repoper/mydocbox/acceptbox/report_list.jsp"><font |
|
color="#535353">접수함</font></a></td> |
|
<%}%> |
|
|
|
<td width="1" align="center" valign="bottom" |
|
style="padding-bottom: 7;">|</td> |
|
|
|
<%//재보고함 |
|
if(MReport.RETURN == prss){%> |
|
<td width="67" align="center" valign="bottom" |
|
style="padding-bottom: 7;" background="images/s_menubg2.jpg"><a |
|
href="/totsys/repoper/mydocbox/returnbox/report_list.jsp"><font |
|
color="#FFFFFF"><b>재보고함</b></font></a></td> |
|
<%}else{%> |
|
<td width="67" align="center" valign="bottom" |
|
style="padding-bottom: 7;"><a |
|
href="/totsys/repoper/mydocbox/returnbox/report_list.jsp"><font |
|
color="#535353">재보고함</font></a></td> |
|
<%}%> |
|
|
|
<td width="1" align="center" valign="bottom" |
|
style="padding-bottom: 7;">|</td> |
|
|
|
<%//임시보고함 |
|
if(MReport.TEMP == prss){%> |
|
<td width="79" align="center" valign="bottom" |
|
style="padding-bottom: 7;" background="images/s_menubg3.jpg"><a |
|
href="/totsys/repoper/mydocbox/tempbox/report_list.jsp"><font |
|
color="#FFFFFF"><b>임시보고함</b></font></a></td> |
|
<%}else{%> |
|
<td width="79" align="center" valign="bottom" |
|
style="padding-bottom: 7;"><a |
|
href="/totsys/repoper/mydocbox/tempbox/report_list.jsp"><font |
|
color="#535353">임시보고함</font></a></td> |
|
<%}%> |
|
|
|
<td width="1" align="center" valign="bottom" |
|
style="padding-bottom: 7;">|</td> |
|
|
|
<%//보고완료함 |
|
if(MReport.COMP == prss){%> |
|
<td width="79" align="center" valign="bottom" |
|
style="padding-bottom: 7;" background="images/s_menubg4.jpg"><a |
|
href="/totsys/repoper/mydocbox/compbox/report_list.jsp"><font |
|
color="#FFFFFF"><b>보고완료함</b></font></a></td> |
|
<%}else{%> |
|
<td width="79" align="center" valign="bottom" |
|
style="padding-bottom: 7;"><a |
|
href="/totsys/repoper/mydocbox/compbox/report_list.jsp"><font |
|
color="#535353">보고완료함</font></a></td> |
|
<%}%> |
|
|
|
<td width="1" align="center" valign="bottom" |
|
style="padding-bottom: 7;">|</td> |
|
|
|
<%//종료함 |
|
if(MReport.END == prss){%> |
|
<td width="63" align="center" valign="bottom" |
|
style="padding-bottom: 7;" background="images/s_menubg5.jpg"><a |
|
href="/totsys/repoper/mydocbox/endbox/report_list.jsp"><font |
|
color="#FFFFFF"><b>종료함</b></font></a></td> |
|
<%}else{%> |
|
<td width="63" align="center" valign="bottom" |
|
style="padding-bottom: 7;"><a |
|
href="/totsys/repoper/mydocbox/endbox/report_list.jsp"><font |
|
color="#535353">종료함</font></a></td> |
|
<%}%> |
|
</tr> |
|
</table> |
|
</td> |
|
<!---- sub menu 끝 ----> |
|
<% |
|
}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{ |
|
} |
|
%>
|
|
|