stockininfo_show.jsp

来自「基于j2ee的物流软件」· JSP 代码 · 共 114 行

JSP
114
字号
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="si"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'stockInInfo_show.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<link rel="stylesheet" type="text/css" href="employee/css/style.css">

  </head>
  
  <body topMargin=0 leftmargin="0" marginheight="0">
    <table border=1 width="97%"  cellspacing=1 cellpadding=3 align=center
			bordercolor="#326598">
			<tr bgcolor="#e8f4ff">
				<td height=25 colspan="8" background="admin/images/tile_sub.gif">
					仓库信息-&gt;入库单管理
				</td>
			</tr>
			<tr>
				<td>
					入库单编号
				</td>
				<td >
					入库日期(年-月-日-时-分)
				</td>
				<td>
					负责人编号
				</td>
				<td>
					商品编号
				</td>
				<td>
					商品数量
				</td>
				<td>
					商品类型编号
				</td>
				<td>
					入库备注
				</td>
				<td>
					操作
				</td>
			</tr>
			<si:forEach var="ski" items="${requestScope.list}">
			  <tr>
					<td>
						${ski.stockInId }
					</td>
					<td>
						${ski.stockInDate }
					</td>
					<td>
						${ski.chargeId }
					</td>
					<td>
						${ski.goodsId }
					</td>
					<td>
						${ski.goodsInNumber }
					</td>
					<td>
						${ski.goodsTypeId }
					</td>
					<td>
						${ski.goodsRemark }
					</td>
					<td>
					    <a href="updatestockInServlet.do?siid=${ski.stockInInfoTableId }">修改</a>
					    <a href="deletestockInServlet.do?siid=${ski.stockInId }&page=0">删除	
					</td>
				</tr>
			
			</si:forEach>
			<tr>
			  <td colspan="8">
			    <a href="StockInInfoShowServlet.do?page=0">首页</a>
			    <a href="StockInInfoShowServlet.do?page=${requestScope.forward }">上一页</a>
			    <a href="StockInInfoShowServlet.do?page=${requestScope.back }">下一页</a>
			    <a href="StockInInfoShowServlet.do?page=${requestScope.end }">尾页</a>
			    [${requestScope.now }]/[${requestScope.count }]页
			  </td>
			</tr>
			<tr>
			  <td colspan="8">
			    <a href="clickInsertStockInServlet.do">添加信息</a>
			  </td>
			</tr>
			<!--  <tr>
			  <td colspan="8">
			  <form action="##" method="post">
			    查询:<input type="text" value="输入入库单编号" name="query"/>
			         <input type="submit" value="确 定"/>
			  </form>
			  </td>
			</tr>
			-->
		</table>
  </body>
</html>

⌨️ 快捷键说明

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