first commit
This commit is contained in:
53
bin/WebRoot/jsp/material/notBOMView.jsp
Normal file
53
bin/WebRoot/jsp/material/notBOMView.jsp
Normal file
@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="../inc.jsp"></jsp:include>
|
||||
|
||||
|
||||
<style>
|
||||
body{ text-align:center}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" class="form">
|
||||
<input type="hidden" name="id" value="${notBOM.id}"/>
|
||||
<table class="table">
|
||||
|
||||
<tr>
|
||||
<th>物料代码</th>
|
||||
<td>${notBOM.materialcode}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>物料名称</th>
|
||||
<td>${notBOM.materialname}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>单位</th>
|
||||
<td>${notBOM.unit}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>物料类型</th>
|
||||
<td>${notBOM.materialmodel}</td>
|
||||
</tr>
|
||||
<%-- <tr>
|
||||
<th>线边库存</th>
|
||||
<td>${notBOM.inventoryFrontLine}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>仓库库存</th>
|
||||
<td>${notBOM.warehousestocknum}</td>
|
||||
</tr> --%>
|
||||
<tr>
|
||||
<th>添加时间</th>
|
||||
<td>${fn:substring(notBOM.handledate,0,19)}</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user