You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
851 B
24 lines
851 B
<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>材料出入库</title>
|
|
</head>
|
|
<body>
|
|
<h3>添加材料出入库记录</h3>
|
|
<form action="${pageContext.request.contextPath}/stock/newadd" method="post">
|
|
记录编号:<input type="text" name="stockId"><br><br>
|
|
材料编号:<input type="text" name="mid"><br><br>
|
|
操作类型:
|
|
<select name="type">
|
|
<option value="入库">入库</option>
|
|
<option value="出库">出库</option>
|
|
</select><br><br>
|
|
数量:<input type="text" name="num"><br><br>
|
|
操作日期:<input type="date" name="opDate"><br><br>
|
|
操作人:<input type="text" name="operator"><br><br>
|
|
<input type="submit" value="提交">
|
|
<input type="reset" value="重置">
|
|
</form>
|
|
</body>
|
|
</html> |