📄 task_pending_finish_project_detail.jsp
字号:
<%@ include file="/vnex/head.jsp"%>
<%@ page errorPage="/vnex/ErrorPage.jsp" %>
<%@ page import="java.util.*" %>
<%@ page import="com.vnex.intranet.workflow.pub.value.*" %>
<%@ page import="com.vnex.intranet.workflow.util.*" %>
<%@ page import="com.vnex.intranet.util.StringUtil" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<jsp:include page="/vnex/page/FORM_HEAD.jsp" />
<BODY text=#000000 vLink=#000000 aLink=#000000 link=#000000 bgColor=#ffffff topMargin=20 leftmargin="0" marginwidth="0" marginheight="0">
<script language="JavaScript1.2" src="/vnex/menu/dockmenu_person.js"></script>
<script language="JavaScript1.2" src="/vnex/menu/dockmenu.js"></script>
<script language="JavaScript">
window.onload=init
</script>
<jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
<jsp:useBean id="taskPendingInfo" scope="session" class="com.vnex.intranet.workflow.taskpending.value.TaskPendingValueBean" />
<jsp:useBean id="projectInfo" scope="session" class="com.vnex.intranet.workflow.projectmanagement.value.PmValueBean" />
<jsp:useBean id="routeInfo" scope="session" class="com.vnex.intranet.workflow.pub.value.RouteValueBean" />
<%
int workflowId = Integer.parseInt(request.getParameter("workflowId"));
int subtaskId = Integer.parseInt(request.getParameter("subtaskId"));
int csubtaskId = Integer.parseInt(request.getParameter("csubtaskId"));
int workflowtypeId = Integer.parseInt(request.getParameter("workflowtypeId"));
int subtasktypeId = Integer.parseInt(request.getParameter("subtasktypeId"));
int csubtasktypeId = Integer.parseInt(request.getParameter("csubtasktypeId"));
int execId = Integer.parseInt(request.getParameter("execId"));
int querytype = Integer.parseInt(request.getParameter("querytype"));
routeInfo = (RouteValueBean)session.getAttribute("routeInfo");
ArrayList subs = routeInfo.getSubtaskList();
SubTaskValueBean click = new SubTaskValueBean();
for(int i=0; i<subs.size(); i++)
{
SubTaskValueBean sub = (SubTaskValueBean)subs.get(i);
if (sub.getSubtaskId() == csubtaskId)
{
click = sub;
}
}
session.removeAttribute("routeInfo");
%>
<script language=JavaScript>
function goback(form)
{
form.action="/mainctrl/taskpending/taskPendingFinishDispatch?workflowId=<%=workflowId%>&workflowtypeId=<%=workflowtypeId%>&subtaskId=<%=subtaskId%>&subtasktypeId=<%=subtasktypeId%>&execId=<%=execId%>&statusId=<%=ExecutorStatus.AGREE%>&querytype=<%=querytype%>";
form.submit();
}
</script>
<DIV align=center>
<form name="form1" method="post" action="">
<TABLE class=outter cellSpacing=0 cellPadding=0 width=600 border=0>
<TBODY>
<jsp:include page="/vnex/page/TTOA_TABLE_TOP.jsp" />
<TR>
<TD colSpan=3 align="center"><br>
<table width="600" border="1" cellspacing="1" bordercolor="#666666">
<tr>
<td align="center" colspan="2" bgcolor="#FFFFFF">
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#666666">
<td colspan="6"><font class="strongw"> <a href="/mainctrl/home/index"><font color="#FFFFFF">首页</font></a>>><a href="/mainctrl/personal/main"><font color="#FFFFFF">个人办公</font></a>>><a href="/mainctrl/taskpending/taskPendingFinishList"><font color="#FFFFFF">已办事宜</font></a>>>项目管理>>总结描述</font></td>
</tr>
</table>
<table class=title border="0" cellpadding="2" cellspacing="1" width="600">
<tr bgcolor="#fafafa">
<td height="15" width="20%"><strong> 实际开始时间:</strong></td>
<td height="15" width="80%">
<%
if ( click.getSubBeginTime() != null )
out.println( StringUtil.getTimeChars( click.getSubBeginTime()+"" ,"day" ) );
else
out.println("无");
%>
</td>
</tr>
<tr bgcolor="#e0e0e0">
<td height="15" width="20%" ><strong> 实际结束时间:</strong></td>
<td height="15" width="80%">
</td>
</tr>
<tr bgcolor="#fafafa">
<td height="15" width="20%"><strong> 计划结束时间:</strong></td>
<td height="15" width="80%">
<%
if ( click.getSubPlanEndTime() != null )
out.println( StringUtil.getTimeChars( click.getSubPlanEndTime()+"" ,"day" ) );
else
out.println("无");
%>
</td>
</tr>
<tr bgcolor="#e0e0e0">
<td height="15" width="20%">
<div align="left"><strong> 工作任务描述:</strong></div>
</td>
<td height="15" width="80%">
<%=click.getSubDescription()%>
</td>
</tr>
<tr bgcolor="#fafafa">
<td colspan="2" align="center" height="30">
<input type="button" name="Button" value="返回" onClick="goback(this.form)" class="text">
</td>
</tr>
</table>
</td>
</tr>
</table>
<jsp:include page="/vnex/page/TTOA_HELP.jsp" />
</TD>
</TR>
<jsp:include page="/vnex/page/TTOA_TABLE_BOTTOM.jsp" />
</TABLE>
<BR>
<jsp:include page="/vnex/page/TTOA_PRODUCER_LOGO.jsp" />
</form></DIV>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -