<%@ page language="java" contentType="text/html; charset=utf-8"
|
pageEncoding="utf-8"%>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
<html>
|
<head>
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<title>上片后破损</title>
|
<link href="${ctx}/static/bootstrap/2.3.2/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
|
<script src="${ctx}/static/jquery/jquery-1.9.1.min.js" type="text/javascript"></script>
|
<script language="javascript" type="text/javascript" src="${ctx}/static/util.js"></script>
|
</head>
|
<script type="text/javascript">
|
function dealBreak(){
|
$.ajax({
|
async: false,
|
|
type:"GET",
|
|
url:"${ctx}/breakmanage/afterbreakdeal2?group=2",
|
|
dataType:"text",
|
|
success:function(data){
|
|
if(data=="nocompleted"){
|
$.MsgBox.Alert("WARM PROMPT", "生产未开始,破损无法标记!");
|
//window.alert("Breakage can not be marked as glass in thi production line has not being cut!");
|
}else{
|
window.location.href="${ctx}/breakmanage/turnpage2";
|
}
|
return false;
|
},
|
error: function (err) {
|
alert(err)
|
},
|
});
|
}
|
|
</script>
|
<body>
|
<div class="content-wrapper">
|
<!-- Content Header (Page header) -->
|
<div>
|
<section class="content-header">
|
<h1>
|
破损管理
|
<small></small>
|
</h1>
|
<ol class="breadcrumb">
|
<li><a href="${ctx }/breakmanage/afterbreak2"><i class="fa fa-reply"></i>上片后破损</a></li>
|
<li class="active">破损</li>
|
</ol>
|
</section>
|
</div>
|
<div>
|
<!-- Main content -->
|
<section class="content container-fluid">
|
<div class="callout callout-info">
|
<h4>如下为原片信息. 点击按钮进行标记!</h4>
|
注意: 如果没有原片信息, 表示当前没有产线任务!
|
</div>
|
<div class="box" style="margin-top: 20px;">
|
<div class="box-header" align="center">
|
<h3 class="box-title">上片后原片信息</h3>
|
</div>
|
<div style="overflow: auto;height:550px; " class="box-body no-padding">
|
<table class="table table-striped" style="font-size: medium;" id="table" align="center">
|
<tr>
|
<td>${rawPackage }</td>
|
</tr>
|
</table>
|
</div>
|
</div>
|
</section>
|
</div>
|
<!-- /.content -->
|
</div>
|
</body>
|
</html>
|