Office_Document_Received_UpdateOk.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:
电子政务应用
开发平台:
Java
- <%@ page errorPage="/vnex/ErrorPage.jsp" %>
- <%@ page import="java.util.*" %>
- <%@ page import="java.sql.Timestamp" %>
- <%@ page import="com.vnex.intranet.workflow.document.value.*" %>
- <%@ page import="com.vnex.intranet.workflow.pub.value.WorkflowFileValueBean" %>
- <%@ page import="com.vnex.intranet.util.*" %>
- <jsp:useBean id="drvb" scope="session" class="com.vnex.intranet.workflow.document.value.DocumentReceivedValueBean"/>
- <jsp:useBean id="documentProxy" scope="application" class="com.vnex.intranet.workflow.document.proxy.DocumentProxyBean" />
- <jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
- <%
- drvb = ( DocumentReceivedValueBean )session.getAttribute( "recieveddocument" );
- %>
- <jsp:setProperty name="drvb" property="*" />
- <%
- drvb.setReceivedDateS( request.getParameter("receivedDateS") );
- drvb.setCreatorId( BusinessName.getEmpId() );
- String dtype = request.getParameter("type");
- drvb.setType( DocumentReceivedType.getInstance( Integer.parseInt(dtype) ) );
- String stype = request.getParameter("securityType");
- drvb.setSecurityType( SecurityType.getInstance( Integer.parseInt(stype) ) );
- documentProxy.modifyReceivedDoc( drvb );
- session.removeAttribute( "recieveddocument" );
- %>
- <jsp:forward page="/mainctrl/office/document/receivedlist?type=2" />