task_pending_conference_result.jsp
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ include file="/vnex/head.jsp"%>
  2. <%@ page errorPage="/vnex/ErrorPage.jsp" %>
  3. <%@ page import="com.vnex.intranet.workflow.pub.value.*" %>
  4. <%@ page import="com.vnex.intranet.workflow.pub.process.*" %>
  5. <%@ page import="com.vnex.intranet.workflow.util.WorkFlowStatus" %>
  6. <%@ page import="com.vnex.intranet.workflow.util.SubTaskStatus" %>
  7. <%@ page import="com.vnex.intranet.workflow.util.ExecutorStatus" %>
  8. <%@ page import="com.vnex.intranet.workflow.util.WorkFlowType" %>
  9. <%@ page import="com.vnex.intranet.workflow.util.SubTaskType" %>
  10. <jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
  11. <jsp:useBean id="proxy" scope="session" class="com.vnex.intranet.workflow.taskpending.proxy.TaskPendingProxyBean" />
  12. <jsp:useBean id="click" scope="session" class="com.vnex.intranet.workflow.pub.value.SubTaskValueBean" />
  13. <jsp:useBean id="execDao" scope="request" class="com.vnex.intranet.workflow.pub.process.ExecutorDao" />
  14. <jsp:useBean id="execInfo" scope="request" class="com.vnex.intranet.workflow.pub.value.ExecutorValueBean" />
  15. <%
  16.     SubTaskValueBean s = (SubTaskValueBean)session.getAttribute("click");
  17.     
  18.     int workflowId = Integer.parseInt(request.getParameter("workflowId"));
  19.     int subtaskId = Integer.parseInt(request.getParameter("subtaskId"));
  20.     int workflowtypeId = Integer.parseInt(request.getParameter("workflowtypeId"));
  21.     int subtasktypeId = Integer.parseInt(request.getParameter("subtasktypeId"));
  22.     
  23.     int execId = Integer.parseInt(request.getParameter("execId"));
  24.     int querytype = Integer.parseInt(request.getParameter("querytype")); 
  25.     
  26.     int statusId = Integer.parseInt(request.getParameter("statusId"));
  27.     
  28.     String notes = request.getParameter("subNote");
  29.     execInfo = execDao.getExecutor(execId);    
  30.     execInfo.setNotes(notes);
  31.     execDao.UpdateRecord(execInfo);
  32.                  
  33.     execInfo = execDao.getExecutor(execId);    
  34.     proxy.setStatus(workflowId,subtaskId,subtasktypeId,execId,statusId);
  35.     String link = "";
  36.     link = "/mainctrl/taskpending/taskPendingList?querytype=" + querytype;    
  37. %>
  38. <jsp:forward page="<%= link %>" />