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

📄 updgi.jsp

📁 仓库管理系统,适合各种行业的仓库管理系统
💻 JSP
字号:
<%@ 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>
<script language="javascript" type="text/javascript" src="<%=request.getContextPath()%>/js/birthday.js"></script>
<script language="javascript" type="text/javascript" src="<%=request.getContextPath()%>/js/ioCheck.js">
</script>
<body>
<h2 class="title1">修改入库记录</h2>
<form id="form1" name="form1" method="post" action="/SMS/giUpd.do" onsubmit="return checkIu();">
  <table width="768"  border="1" class="tablelistcontent">  
    <c:forEach var="p" items="${plist}">
    <tr>
      <th width="378" scope="row">物品ID:</th>
      <td width="374"><label>
        <input name="productID" type="text" class="inputcontent" value="${p.productID }" readonly="readonly"/>
      </label></td>
    </tr>
    <tr>
      <th scope="row">入库数量:</th>
      <td><label>
        <input name="inamount" type="text" class="inputcontent" value="${p.amount }"/>
      </label></td>
    </tr>
    <tr>
      <th scope="row"> 买入价格:</th>
      <td><label>
        <input name="price" type="text" class="inputcontent" value="${p.price }"/>
      </label></td>
    </tr>
    <tr>
      <th scope="row">供应商:</th>
      <td><label>
        <input name="provider" type="text" class="inputcontent" value="${p.provider }"/>
      </label></td>
    </tr>
    <tr>
      <th scope="row">入库时间:</th>
      <td><input name="time" type="text" class="inputcontent" onfocus="show_cele_date(time,'','',time)" value="${p.inputtime }"/></td>
    </tr>
    <tr>
      <th scope="row">经办人ID:</th>
      <td><label>
        <input name="checkerID" type="text" class="inputcontent" value="${p.checkerID }"/>
      </label></td>
    </tr>
    </c:forEach>
    <tr>
      <th height="44" scope="row"><div align="center">
        <input name="Submit2" type="submit" class="button" id="Submit2" value="提交" />
      </div></th>
      <td><label for="Submit"></label>
        <div align="center">
          <input name="reset" type="reset" class="button" id="reset" value="重置" />
      </div></td>
    </tr>
  </table>
</form>
<p align="center"><a href="/SMS/giList.do">上一页</a></p>
</body>
</html>

⌨️ 快捷键说明

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