task_pending_conference_result.jsp

来自「非常完整的Java开发的网络办公系统」· JSP 代码 · 共 50 行

JSP
50
字号
<%@ include file="/vnex/head.jsp"%>
<%@ page errorPage="/vnex/ErrorPage.jsp" %>

<%@ page import="com.vnex.intranet.workflow.pub.value.*" %>
<%@ page import="com.vnex.intranet.workflow.pub.process.*" %>
<%@ page import="com.vnex.intranet.workflow.util.WorkFlowStatus" %>
<%@ page import="com.vnex.intranet.workflow.util.SubTaskStatus" %>
<%@ page import="com.vnex.intranet.workflow.util.ExecutorStatus" %>

<%@ page import="com.vnex.intranet.workflow.util.WorkFlowType" %>
<%@ page import="com.vnex.intranet.workflow.util.SubTaskType" %>

<jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
<jsp:useBean id="proxy" scope="session" class="com.vnex.intranet.workflow.taskpending.proxy.TaskPendingProxyBean" />
<jsp:useBean id="click" scope="session" class="com.vnex.intranet.workflow.pub.value.SubTaskValueBean" />
<jsp:useBean id="execDao" scope="request" class="com.vnex.intranet.workflow.pub.process.ExecutorDao" />
<jsp:useBean id="execInfo" scope="request" class="com.vnex.intranet.workflow.pub.value.ExecutorValueBean" />

<%

    SubTaskValueBean s = (SubTaskValueBean)session.getAttribute("click");
    
    int workflowId = Integer.parseInt(request.getParameter("workflowId"));
    int subtaskId = Integer.parseInt(request.getParameter("subtaskId"));

    int workflowtypeId = Integer.parseInt(request.getParameter("workflowtypeId"));
    int subtasktypeId = Integer.parseInt(request.getParameter("subtasktypeId"));
    
    int execId = Integer.parseInt(request.getParameter("execId"));
    int querytype = Integer.parseInt(request.getParameter("querytype")); 
    
    int statusId = Integer.parseInt(request.getParameter("statusId"));
    
    String notes = request.getParameter("subNote");

    execInfo = execDao.getExecutor(execId);    
    execInfo.setNotes(notes);

    execDao.UpdateRecord(execInfo);
                 
    execInfo = execDao.getExecutor(execId);    

    proxy.setStatus(workflowId,subtaskId,subtasktypeId,execId,statusId);

    String link = "";
    link = "/mainctrl/taskpending/taskPendingList?querytype=" + querytype;    

%>
<jsp:forward page="<%= link %>" />

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?