📄 ingoods_housear_info.jsp
字号:
<%@ page contentType="text/html; charset=GBK"%>
<%@page import="org.ads123.goodsmanagers.dto.Rent"%>
<%@page import="java.util.ArrayList"%>
<html>
<head>
<title>仓库存储状态信息</title>
</head>
<body bgcolor="green">
<br><br>
<%
ArrayList<Rent> rent_list = (ArrayList)request.getAttribute("rent_ingoods_info");
%>
<font size="6" color="yellow">货物入库</font><br><br>
<font color="white"><%=session.getAttribute("c_name") %></font>公司所租用的仓库存储信息如下:<br><br>
<form action="">
<table border="1" align="center" bordercolor="pink" width="80%" cellpadding="1" cellspacing="1">
<tr>
<td><font color="yellow">仓库号:</font></td>
<td><font color="yellow">出租日期:</font></td>
<td><font color="yellow">出租时间:</font></td>
<td><font color="yellow">货物名称:</font></td>
<td><font color="yellow">已用空间:</font></td>
<td><font color="yellow">未用空间:</font></td>
</tr>
<%
for(Rent list:rent_list){
%>
<tr>
<td><font color="white"><%=list.getR_no() %></font></td>
<td><font color="white"><%=list.getR_date() %></font></td>
<td><font color="white"><%=list.getR_time() %></font></td>
<td><font color="white"><%=list.getG_name() %></font></td>
<td><font color="white"><%=list.getR_use() %></font></td>
<td><font color="white"><%=list.getR_nouse() %></font></td>
</tr>
<%
}
%>
</table>
</form>
<a href="<%=request.getContextPath() %>/Controller?act=in_goods"><font color="pink">货物入库</font></a>
<a href="#"><font color="blue">仓库预约</font></a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -