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

电子政务应用

开发平台:

Java

  1. <%@ page errorPage="/vnex/ErrorPage.jsp" %>
  2. <%@ page import="java.util.*" %>
  3. <%@ page import="java.sql.Timestamp" %>
  4. <%@ page import="com.vnex.intranet.workflow.document.value.*" %>
  5. <%@ page import="com.vnex.intranet.workflow.pub.value.WorkflowFileValueBean" %>
  6. <%@ page import="com.vnex.intranet.util.*" %>
  7. <%@ page import="com.vnex.intranet.workflow.util.WorkFlowType" %>
  8. <jsp:useBean id="dsvb" scope="session" class="com.vnex.intranet.workflow.document.value.DocumentSendValueBean"/>
  9. <jsp:useBean id="documentProxy" scope="application" class="com.vnex.intranet.workflow.document.proxy.DocumentProxyBean" />
  10. <jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
  11. <%
  12.     dsvb = ( DocumentSendValueBean )session.getAttribute( "document" );
  13. %>
  14. <jsp:setProperty name="dsvb" property="*" />
  15. <%
  16.     dsvb.setCreatorId( BusinessName.getEmpId() );    
  17.     dsvb.setTypeId( WorkFlowType.APPLY );
  18.     
  19.     String dtype = request.getParameter("instancyType");
  20.     dsvb.setInstancyType( InstancyType.getInstance( Integer.parseInt(dtype) ) );
  21.         
  22.     documentProxy.modifySentDoc( dsvb );
  23.     
  24. %>
  25. <jsp:forward page="/mainctrl/personal/report/sentlist?type=2" />