📄 backupstock.jsp
字号:
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*,com.bean.DTO.*" errorPage="" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link href="../css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<link href="<%=request.getContextPath()%>/css/SMSpublic.css" rel="stylesheet" type="text/css"/>
<script language="javascript" type="text/javascript" src="<%=request.getContextPath() %>/js/birthday.js"></script>
<style type="text/css">
<!--
#Layer1 {
position:absolute;
width:114px;
height:29px;
z-index:1;
left: 534px;
top: 86px;
}
#Layer2 {
position:absolute;
width:167px;
height:34px;
z-index:1;
left: 547px;
top: 85px;
}
.STYLE1 {color: #9999FF}
-->
</style>
</head>
<body>
<table width="1010" border="0" height="21" bgcolor="#6495ED"cellpadding="0" cellspacing="0" >
<tr>
<td width="15%" > <font class="title1 STYLE1"> 查 询 采 购 表</font></td>
</tr>
</table>
<form id="form1" name="form1" method="post" action="/SMS/backupstock.do">
<table width="800" border="0" cellpadding="1" cellspacing="1">
<tr bgcolor="#99CCCC" height="25">
<td colspan="9" class="STYLE18">起始时间:
<input type="text" name="begin" value="${time.begin}" onfocus="show_cele_date(begin,'','',begin)"/>
终止时间:
<input type="text" name="end" value="${time.end}" onfocus="show_cele_date(end,'','',end)"/>
<label>
<input name="Submit3" type="submit" class="button" value="查询" />
</label></td>
</tr>
<tr bgcolor="#99CCCC" height="25">
<td width="11%" class="smalltitle">采购项目ID</td>
<td width="11%" class="smalltitle">货物ID</td>
<td width="11%" class="smalltitle">价格</td>
<td width="11%" class="smalltitle">数量</td>
<td width="11%" class="smalltitle">供货商</td>
<td width="12%" class="smalltitle">采购时间</td>
<td width="11%" class="STYLE18"><span class="smalltitle">采购员I</span>D</td>
<td width="11%" class="smalltitle">负责人ID</td>
<td width="11%" class="STYLE18">审批状态</td>
</tr>
<c:forEach var = "dto" items="${list}">
<tr height="25">
<td class="STYLE18">${dto.projectID }</td>
<td class="STYLE18">${dto.productID }</td>
<td class="STYLE18">${dto.realprice }</td>
<td class="STYLE18">${dto.realamount }</td>
<td class="STYLE18">${dto.provider }</td>
<td class="STYLE18">${dto.buytime }</td>
<td class="STYLE18">${dto.checkerID}</td>
<td class="STYLE18">${dto.directorID}</td>
<c:choose>
<c:when test="${dto.stateID==5}">
<td class="STYLE3 STYLE18">通过</td>
</c:when>
<c:when test="${dto.stateID==6}">
<td class="STYLE4 STYLE18">未通过</td>
</c:when>
<c:otherwise>
<td class="STYLE4 STYLE18">未审批</td>
</c:otherwise>
</c:choose>
</tr>
</c:forEach>
<tr height="25">
<td colspan="11" class="STYLE18">
<input type="button" name="Submit" value="导出报表" class="widthbutton" onclick="javascript:window.location.href='backup.do?begin=${time.begin }&&end=${time.end }'"/>
<label class="STYLE4 STYLE18"> ${success }</label>
<input type="button" name="Submit2" value="下载报表" class="widthbutton" onclick="javascript:window.location.href='/SMS/download.do?begin=${time.begin }&&end=${time.end }'"/></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -