Files
SIPAIIS_WMS_JSSW/bin/WebRoot/jsp/material/materialInfoView1.jsp
2026-01-16 14:13:44 +08:00

113 lines
2.5 KiB
Plaintext

<!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="${materialInfo.id }"/>
<table class="table">
<tr>
<th>物料代码</th>
<td>${materialInfo.materialcode }</td>
</tr>
<tr>
<th>物料名称</th>
<td>${materialInfo.materialname }</td>
</tr>
<tr>
<th>规格型号</th>
<td>${materialInfo.materialmodel }</td>
</tr>
<tr>
<th>物料属性</th>
<td>${materialInfo.materialproperties }</td>
</tr>
<tr>
<th>辅助属性</th>
<td>${materialInfo.secondaryattribute}</td>
</tr>
<tr>
<th>单位</th>
<td>${materialInfo.unit }</td>
</tr>
<tr>
<th>数量</th>
<td>${materialInfo.num }</td>
</tr>
<tr>
<th>成品率(%)</th>
<td>${materialInfo.yield }</td>
</tr>
<tr>
<th>状态</th>
<td>${materialInfo.state }</td>
</tr>
<tr>
<th>审核</th>
<td>${materialInfo.audit }</td>
</tr>
<tr>
<th>版本</th>
<td>${materialInfo.version }</td>
</tr>
<tr>
<th>图号</th>
<td>${materialInfo.drawnum}</td>
</tr>
<tr>
<th>工艺路线代码</th>
<td>${materialInfo.processlinecode }</td>
</tr>
<tr>
<th>工艺路线名称</th>
<td>${materialInfo.processlinename }</td>
</tr>
<tr>
<th>建立人员</th>
<td>${materialInfo. remark1}</td>
</tr>
<tr>
<th>建立日期</th>
<td>${materialInfo.insdt }</td>
</tr>
<tr>
<th>最后更新人</th>
<td>${materialInfo.lastinsuser }</td>
</tr>
<tr>
<th>最后更新日期</th>
<td>${materialInfo.lastinsdt }</td>
</tr>
<tr>
<th>使用人员</th>
<td>${materialInfo.usepeople}</td>
</tr>
<tr>
<th>使用日期</th>
<td>${materialInfo.userdt }</td>
</tr>
<tr>
<th>备注</th>
<td>${materialInfo.remark }</td>
</tr>
<tr>
<th>跳层</th>
<td>${materialInfo.jumplayer }</td>
</tr>
</table>
<br />
</form>
</body>
</html>