checkgs.jsp

来自「仓库管理系统,适合各种行业的仓库管理系统」· JSP 代码 · 共 53 行

JSP
53
字号
<%@ page contentType="text/html; charset=utf-8" language="java" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<link href="<%=request.getContextPath()%>/css/SMSpublic.css" rel="stylesheet" type="text/css" />
</head>

<body>
<h2 class="title1">主管审批</h2>
<p class="title1"><span class="title2">报损信息详情</span></p>
<form id="form1" name="form1" method="get" action="delgood.do">
  <table width="752"   border="2" align="center" cellpadding="1" cellspacing="1" class="tablelistcontent">
    
    <tr>
      <td>货物ID</td>
      <td>货物名称</td>
      <td>报损数量</td>
      <td>损坏原因</td>
      <td>损坏时间</td>
      <td>经办人</td>
      <td>审批人ID</td>      
      <td>操作</td>
    </tr>
    <c:forEach var="p" items="${plist}">
      <tr>
        <td>${p.productID}</td>
        <td>${p.productname}</td>
        <td>${p.brokenamount}</td>
        <td>${p.reason}</td>
        <td>${p.breaktime}</td>
        <td>${p.checker }</td>
        <c:choose>
        <c:when test="${p.directorID==0}">
        <td>未审批</td>
        <td><a href="cgsGet.do?id=${p.productID}">审批</a> </td>
        </c:when>
        <c:otherwise>
        <td>${p.directorID }</td>
        <td>已审批</td>
        </c:otherwise>
        </c:choose>
      </tr>
    </c:forEach>
  </table>
</form>
<p align="center"><a href="storeManage/check/checkSearch.jsp">上一页</a></p>
</body>
</html>

⌨️ 快捷键说明

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