⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delivinventoryquery.jsp

📁 (Java+SQL)-大型企业JAVA的ERP系统
💻 JSP
字号:
<jsp:useBean id="global" class="src.com.MyGlobal" scope="session"/>

<% if (global.isLogined == false) {
%>
<jsp:forward page="../pub/DBErr.jsp" > 
	<jsp:param name="rtcode" value="-4" />
</jsp:forward>
<%	}
%>

<html>
<head>
<title>销售凭证信息</title>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../pub/style.css">
<script language ="javascript" src='../pub/pub.js' type=text/javascript></script>
</head>

<body>
<%String sale = request.getParameter("sale");
String allocate = request.getParameter("allocate");
String purch = request.getParameter("purch");
String receiptId = request.getParameter("receiptId");
%>
<%if(sale !="" && sale != null){%>
    <jsp:forward page="DelivSalesReceiptList.jsp" > 
		<jsp:param name="slipId" value="<%=receiptId%>"/>		
    </jsp:forward>
<%}
  if(allocate !="" && allocate != null){
%>	  	
<jsp:forward page="DelivAllocatReceiptList.jsp" > 
		<jsp:param name="allocatId" value="<%=receiptId%>"/>		
    </jsp:forward>
    
<%}
  if(purch !="" && purch != null){
%>		
<jsp:forward page="DelivPurchReceiptList.jsp" > 
		<jsp:param name="purchId" value="<%=receiptId%>"/>		
    </jsp:forward>    
<%}%>


</body>
</html>


⌨️ 快捷键说明

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