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

175 lines
4.2 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"%>
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<jsp:include page="../inc.jsp"></jsp:include>
<script language="JavaScript">
// if (window.name!="frSheet")
// window.location.replace("../质检.htm");
// else
// parent.fnUpdateTabs(0);
function dosave(dialog,grid) {
if ($(".form").form('validate')) {
$.post(ext.contextPath + "/quality/statistics_CI/updateCISub.do", $(".form").serialize(), function(data) {
if (data.res == 1) {
top.$.messager.alert('提示', "保存成功", 'info', function() {
//刷新列表
grid.datagrid('reload');
dialog.dialog('destroy');
});
}else if(data.res == 0){
top.$.messager.alert('提示', "保存失败", 'info');
}else {
top.$.messager.alert('提示', data.res, 'info');
}
},'json');
}
}
$(function() {
}) ;
</script>
</head>
<body link="blue" vlink="purple">
<form id="form" method="post" class="form">
<input id="id" name="id" type="hidden" value="${statistics_CI_Sub.id}" />
<input id="workorderno" name="workorderno" type="hidden" value="${statistics_CI_Sub.workorderno}" />
<input id="procedureno" name="procedureno" type="hidden" value="${statistics_CI_Sub.procedureno}" />
<input id="status" name="status" type="hidden" value="${statistics_CI_Sub.status}" />
<table class="table" >
<caption style="background-color:LightGrey;width=100px;padding:6px 6px;">
基本信息
</caption>
<tr>
<th>检测工位</th>
<td>${statistics_CI_Sub.workstationno}
</td>
<th>作业员</th>
<td>${statistics_CI_Sub.operator}
</td>
</tr>
<tr>
<th>产品型号</th>
<td>${statistics_CI_Sub.productionno}
</td>
<th>CNC机台</th>
<td>
${statistics_CI_Sub.cncstationno}
</td>
</tr>
</table>
<br />
<table class="table">
<caption style="background-color:LightGrey;width=100px;padding:6px 6px;">基本参数</caption>
<tr>
<th>投入数</th>
<td>
${statistics_CI_Sub.inputnum}
</td>
<th>良品数</th>
<td>
${statistics_CI_Sub.goodproductionnum}
</td>
</tr>
<tr>
<th>返磨数</th>
<td>
${statistics_CI_Sub.remonum}
</td>
<th>报废数</th>
<td>
${statistics_CI_Sub.scrapnum}
</td>
</tr>
<tr>
<th>返洗数</th>
<td>
${statistics_CI_Sub.rewashnum}
</td>
</tr>
</table>
<br />
<table class="table">
<caption style="background-color:LightGrey;width=100px;padding:6px 6px;">不良类型(返磨)</caption>
<tr>
<th>插架伤痕</th>
<td>
${statistics_CI_Sub.cjsh}
</td>
<th>轻微沙边</th>
<td>
${statistics_CI_Sub.qwsb}
</td>
</tr>
<tr>
<th>研磨伤痕</th>
<td>
${statistics_CI_Sub.ymsh}
</td>
<th>发霉/未磨透</th>
<td>
${statistics_CI_Sub.fmorwmt}
</td>
</tr>
<tr>
<th>磨粉点</th>
<td>
${statistics_CI_Sub.mfd}
</td>
</tr>
</table>
<br />
<table class="table">
<caption style="background-color:LightGrey;width=100px;padding:6px 6px;">不良类型(报废)</caption>
<tr>
<th>崩边</th>
<td>
${statistics_CI_Sub.bb}
</td>
<th>深花</th>
<td>
${statistics_CI_Sub.sh}
</td>
</tr>
<tr>
<th>起点凹点</th>
<td>
${statistics_CI_Sub.qdad}
</td>
<th>破裂</th>
<td>
${statistics_CI_Sub.pl}
</td>
</tr>
<tr>
<th>严重沙边</th>
<td>
${statistics_CI_Sub.yzsb}
</td>
<th>摆不正</th>
<td>
${statistics_CI_Sub.bbz}
</td>
</tr>
<tr>
<th>备注</th>
<td>
${statistics_CI_Sub.remark}
</td>
</tr>
</table>
</form>
</body>
</html>