廖井涛
2025-06-16 6067c5e5e7e568caa915f5124c71f39fbd2dc1b9
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<html>
<head>
<title>理片笼</title>
<style type="text/css">
@IMPORT url("${ctx}/static/global/showtask/showtask.css");
</style>
 
<script>
    var contextPath = "${pageContext.request.contextPath}";
</script>
 
<link type="text/css" rel="stylesheet"
    href="${pageContext.request.contextPath}/static/css/dataTables.bootstrap.css" />
<link type="text/css" rel="stylesheet"
    href="${pageContext.request.contextPath}/static/css/dataTables.tableTools.css" />
 
<script type="text/javascript"
    src="${pageContext.request.contextPath}/static/js/jquery.min.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath}/static/js/jquery.dataTables.min.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath}/static/js/dataTables.bootstrap.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath}/static/js/dataTables.tableTools.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath}/static/js/moment.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath}/static/js/sucaijiayuan.js"></script>
<script type="text/javascript"
    src="${pageContext.request.contextPath}/static/laydate/laydate.js"></script>
<script type="text/javascript" src="${ctx}/static/util/utilAlert.js"></script>
 
<style type="text/css">
.rank {
    font-weight: bolder;
    margin-left: 10px;
    font-size: 18px;
    vertical-align: bottom;
    margin-right: 20px;
}
 
.btn-lg {
    margin-left: 90px;
}
 
#task {
    height: 315px;
    overflow: auto;
}
 
.use {
    margin-left: 30px;
    font-size: 18px;
}
 
#blockdiv {
    width: 400px;
    height: 475px;
    float: left;
    display: none;
    font-size: 35px;
    position: absolute;
    opacity: 1;
    background: Silver;
    z-index: 1;
    /*     border: 1px solid #ccc;   */
    color: black;
    pointer-events: none;
}
 
#example1 tbody {
      display:block;
      height:495px;
      overflow-y:scroll;
}
#example1 thead,#example1 tbody tr {
     display:table;
     width:100%;
     table-layout:fixed;
}
#example1 thead {
     width: calc(100% - 1em);
}
#example1 thead th {
     background:#ccc;
}
 
#example tbody {
      display:block;
      height:595px;
      overflow-y:scroll;
}
#example thead,#example tbody tr {
     display:table;
     width:100%;
     table-layout:fixed;
}
#example thead {
     width: calc(100% - 1em);
}
#example thead th {
     background:#ccc;
}
 
</style>
 
<script type="text/javascript">
 
//var interval = setInterval('refreshStatus()', 20000);
//设备页面自动刷新
/* function refreshStatus() {
    window.location.reload();
} */
//停止页面自动刷新
/* function disableAutoRefresh() {
    clearInterval(interval);
} */
    $(document).ready(function(){
          var info = $("#info").attr("info");
          $("#infos").html(info);
    });
    
    /*删除  */
    function delAll(type){
        var groups=document.getElementsByName('groups')[0].value;
        var checkboxs=document.getElementsByName('id');
          for(var i=0;i<checkboxs.length;i++){
          var checkbox=checkboxs[i];
          if(checkbox.checked){               
            var RowHtml=checkbox.parentNode.parentNode;
            var rankid=RowHtml.getElementsByClassName("rankid")[0].innerHTML;
              
                $.ajax({
                  cache:false,
                  type:"POST",
                  dataType : "json", 
                   url:"${ctx}/slicecage/rackdelete/"+groups,
                   data:{
                       "rankid":rankid,
                       "type":type
                   },success:function(data){ 
                       window.location.href="${ctx}/slicecage/slicecagerank/"+groups;
                  }
              }); 
          }         
      } 
    }
    
    
    /修改模式  */
    function onchecks(type){
        var groups=document.getElementsByName('groups')[0].value;
        $.ajax({
              cache:false,
                type:"POST",
                dataType : "json", 
                 url:"${ctx}/slicecage/slicecagepattern/"+groups,
                 data:{
                     "type":type,
                 },success:function(data){ 
                     window.location.href="${ctx}/slicecage/slicecagerank/"+groups;
                  }
                 
        });
    }
    
    
    
    
    function oncheck(){
        var a=true;
        var checklist=document.getElementsByName('id');
        for(var i=0;i<checklist.length;i++){
            if(checklist[i].checked){
                a=false;
                
            }
        }
        if(a){
            alert("请选中一行");
        }
        else{
            $("#add-info").modal('show');
            disableAutoRefresh()
        }
        
    }
    //添加
    function addrack(){
        var rankid;
         var galsstaskid;
         var groups=document.getElementsByName('groups')[0].value;
         var checkboxs1=document.getElementsByName('id');
        for(var i=0;i<checkboxs1.length;i++){
            var checkbox1=checkboxs1[i];
            if(checkbox1.checked){
                var RowHtml=checkbox1.parentNode.parentNode;
                rankid=RowHtml.getElementsByClassName("rankid")[0].innerHTML;
            }
        }
         var checkboxs=document.getElementsByName('galsstaskid');
        for(var i=0;i<checkboxs.length;i++){
            var checkbox=checkboxs[i];
            if(checkbox.checked){
                var RowHtml=checkbox.parentNode.parentNode;
                galsstaskid=RowHtml.getElementsByClassName("rankid")[0].innerHTML;
            }
        }
        
        $.ajax({
              cache:false,
                type:"POST",
                dataType : "json", 
                 url:"${ctx}/slicecage/addslicecagerack",
                 data:{
                     "rankid":rankid,
                     "galsstaskid":galsstaskid,
                 },success:function(data){ 
                     window.location.href="${ctx}/slicecage/slicecagerank/"+groups;
                  }
                 
        });
        
    }
     var gongyi="理片笼";
     var group = ${groups};
</script>    
</head>
<body>
 
    <div class="content-wrapper">
        <!--导航页  -->
        <section class="content-header">
            <h1>
                理片笼 <small>管理</small>
            </h1>
            <ol class="breadcrumb">
                <li><a href="#"><i class="fa fa-dashboard"></i> 理片笼</a></li>
                <li class="active">管理</li>
            </ol>
        </section>
           <div id = "info" info = "${info}"></div>
           <input style="display:none" type="text" name="groups" value="${groups}" />
        <!-- body开始 -->
        <section class="content container-fluid">
            <span>单元格管理:</span>
            <!--表格 -->
            <button type="button" onclick="oncheck()" class="btn btn-primary ">添加小片</button>
            <button type="button" onclick="delAll('出片')" class="btn btn-primary ">出片</button>
            <button type="button" onclick="delAll('禁用')" class="btn btn-primary ">禁用</button>
            <button type="button" onclick="delAll('启用')" class="btn btn-primary ">启用</button>
            <span>理片笼模式:</span>
            ${buttonhmtl}
            <!-- 2023-09-20新增 开始-->
            <button type="button" class="btn btn-primary "  onclick="onChangeMode()" id="btnLPLMode" >单片模式</button>
            <!-- 2023-09-20新增结束 -->
            <div>
            
                <table id="example" class="table table-bordered table-condensed">
                <thead style="font-size: 20px; Height: 40px">
                    <tr>
                        <th style="width:30px"><input type="checkbox" name="allChecked" /></th>
                        <th style="display:none">编号</th>
                        <th>架号</th>
                        <th>状态</th>
                        <th>glassId</th>
                        <th>长度(mm)</th>
                        <th>高度(mm)</th>
                        <th>厚度(mm)</th>
                        <th>数量</th>
                        <th>流程卡号</th>
                        <th>工程号</th>
                        <th style="width:200px">禁用状态(1为禁用)</th>
                    </tr>
                </thead>
                <tbody>
                    ${slicecageRankInfohmtl}
                </tbody>
                </table>
            </div>
 
 
            
 
            <!--添加原片页面开始-->
            <div class="modal fade" id="add-info" tabindex="-1" role="dialog"
                aria-labelledby="myModalLabel" aria-hidden="true">
                <div class="modal-dialog " style="width: 1000px;height: 800px;">
                    <div class="modal-content">
                        <div class="modal-header">
                            <button type="button" class="close" data-dismiss="modal"
                                aria-hidden="true" data-backdrop="static">&times;</button>
                            <h3 class="modal-title" id="myModalLabel"
                                style="font-weight: bolder;">添加小片</h3>
                        </div>
                        <div>
                            <table id="example1" class="table table-bordered table-condensed">
                            <thead style="font-size: 20px; Height: 40px">
                                <tr>
                                    <th><input type="radio" name="allCheckeds" /></th>
                                    <th style="display:none">编号</th>
                                    <th>glassId</th>
                                    <th>长度(mm)</th>
                                    <th>高度(mm)</th>
                                    <th>厚度(mm)</th>
                                    <th>流程卡号</th>
                                    <th>架号</th>
                                </tr>
                            </thead>
                            <tbody>
                                ${galsstaskInfohmtl}
                            </tbody>
                            </table>
                        </div>
                        
                            
 
                            
                            <div class="modal-footer">
                                <button type="button" class="btn btn-default btn-lg"
                                    data-dismiss="modal">关闭</button>
                                <button type="button" onclick="addrack()" class="btn btn-primary btn-lg"
                                    id="addbtnsubmit">提交</button>
                            </div>
                    </div>
                </div>
            </div>
 
            
        </section>
        
    
    </div>
    <%@ include file="/WEB-INF/views/mes/view/modal_tishi.jsp"%>
    <%@ include file="/WEB-INF/views/mes/view/modal_js_lipianlong_mode.jsp"%>
    <%-- <script type="text/javascript"
        src="${pageContext.request.contextPath}/static/pagination/js/rawpackage.js"></script> --%>
</body>
</html>