📄 show.jsp
字号:
<%@ page contentType="text/html;charset=GB2312"%>
<%@ page import="cn.com.aheadsoft.recordset.DEPlanRecordSet,cn.com.aheadsoft.util.StringFormat" %>
<%@ page import="cn.com.aheadsoft.recordset.DEProccessRecordSet" %>
<%
DEProccessRecordSet dpset = (DEProccessRecordSet) request.getAttribute("dpset");
DEPlanRecordSet set = (DEPlanRecordSet) request.getAttribute("set");
String D_Serial = (String)request.getAttribute("D_Serial");
%>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>任务实施计划页</title></head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" >
<tr height="8">
<td class="trA"> 您的位置:任务管理 >> 任务列表 >><font class="fontcolor"> 实施计划和实施过程里程碑</font></td>
</tr>
<tr height="8">
<td></td>
</tr>
<tr>
<td align="center">
<table border="0" width="98%" class="collapse">
<tr>
<td colspan="7" class="tdA">实施计划列表
</td>
</tr>
<tr>
<td width="5%" height="15" align="center" class="tdB" nowrap>序号</td>
<td width="12%" height="15" align="center" class="tdB" nowrap>计划开始时间</th>
<td width="12%" height="15" align="center" class="tdB" nowrap>计划完成时间</th>
<td width="53%" height="15" align="center" class="tdB" nowrap>实施计划概述</td>
<td width="8%" height="15" align="left" class="tdB" nowrap>负责人</td>
<td width="5%" height="15" align="center" class="tdB" nowrap>分值</td>
<td width="5%" height="15" align="center" class="tdB" nowrap>考核</td>
</tr>
<%int i = 0;%>
<%if(null != set){
while(set.next()){%>
<tr <%
if((i+1)%2==0){
%> class="bgcolor"<%}%>>
<td width="5%" height="15" align="center" class="common" ><%=i+1%></td>
<td width="12%" height="15" align="center" class="common" ><%=set.getP_StartDate()%></td>
<td width="12%" height="15" align="center" class="common" ><%=set.getP_Date()%></td>
<td width="53%" height="15" align="left" class="common" ><a href="/krm/servlet/DetailServlet?module=deplan&&status=q&&id=<%=set.getP_ID()%>&&D_Serial=<%=D_Serial%>"><%=StringFormat.toOldFormat(set.getP_Brief())%></a></th>
<td width="8%" height="15" align="left" class="common" ><%=set.getI_Name()%></td>
<td width="5%" height="15" align="center" class="common" ><%=set.getP_Grade()%></td>
<td width="5%" height="15" align="center" class="common" ><%=set.getP_Check()%>%</td>
</tr>
<%i++;
}}%>
<tr><td colspan="7" class="tdC"> </td>
</tr>
</table>
<br>
<table border="0" width="98%" class="collapse">
<tr>
<td colspan="6" class="tdA">实施过程列表</td>
</tr>
<tr>
<td width="5%" height="15" align="center" class="tdB" nowrap>序号</td>
<td width="12%" height="15" align="center" class="tdB" nowrap>时间</td>
<td width="61%" height="15" align="center" class="tdB" nowrap>实施过程概述</td>
</tr>
<%int j = 0;%>
<%if(null != dpset){
while(dpset.next()){%>
<tr <%
if((j+1)%2==0){
%> class="bgcolor"<%}%>>
<td width="5%" height="15" align="center" class="common" ><%=j+1%></td>
<td width="12%" height="15" align="center" class="common" ><%=dpset.getP_FinishDate()%></td>
<td width="83%" height="15" align="left" class="common" ><a href="/krm/servlet/DetailServlet?module=deproccess&&status=q&&id=<%=dpset.getP_ID()%>&&D_Serial=<%=D_Serial%>"><%=StringFormat.changeHTMLTags(dpset.getP_Brief())%></a></td>
</tr>
<%j++;
}}%>
<tr><td colspan="6" class="tdC"> </td>
</tr>
</table>
<table border="0" width="98%" class="collapse">
<tr>
<td align="center" colspan="20" class="tdC">
<input type="button" onmouseover="this.className='button2'" onmouseout="this.className='button1'" class="button1" value="返 回" onClick="history.back(1);">
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -