严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<%@ 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>