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
<%@ 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">
* {
    padding: 0px;
    margin: 0px;
    font-family: "microsoft yahei", "Helvetica Neue", Helvetica, Arial,
        sans-serif;
}
#Top {
    display: block;
    margin-bottom: 10px;
    padding: 5px;
    padding-left: 6px;
    padding-right: 15px;
    line-height: 22px;
    border-radius: 0 2px 2px 0;
    background-color: #f2f2f2;
}
 
.btn {
    height: 35px;
    line-height: 35px;
    background-color: #0dc316;
    padding: 0 15px;
    color: #fff;
    border: none;
    border-radius: 2px;
}
 
table thead tr {
    background-color: #f2f2f2;
}
 
table {
    width: 100%;
    border-collapse: collapse;
    text-align:center;
}
 
table th {
    border: 1px solid #f2f2f2;
    height: 20px;
    line-height: 20px;
    padding: 9px 15px 9px 15px;
    text-align:center;
}
 
.One td {
    border: 1px solid #f2f2f2;
    height: 20px;
    line-height: 20px;
    padding: 9px 15px 9px 15px;
}
 
.two td {
    border: 1px solid #f2f2f2;
    height: 20px;
    line-height: 20px;
    padding: 9px 15px 9px 15px;
}
</style>
<script type="text/javascript" src="${ctx}/static/jquery/jquery-3.1.0.min.js"></script>
<script>
 
/*弹窗-手动添加*/
function modifyraw(){
     $("#add-fix-info").modal('show');
     initializeData();
}
/*初始化加载表格*/
initialize();
function initialize(){
    initializeTable();
}
function initializeData(){
    $('#station').empty();
    var row="<tr><td>1</td>";
    var stationOption="";
    for(var i = 1; i < 10; i++){
        stationOption+="<option value='"+i+"'>"+i+" 号库位</option>";
    }
    for(var i=1101;i<=1114;i++){
        stationOption+="<option value='"+i+"'>"+i+" 号上片位</option>";
    }
    for(var i=990;i<=993;i++){
        stationOption+="<option value='"+i+"'>"+i+" 号吊装位</option>";
    } 
    
    row+="<td><select name='start'>"+stationOption+"</select></td>"+
         "<td><select name='end'>"+stationOption+"</select></td></tr>";
    $('#station').append(row);
}
var Tb={
    id:"tb1",
    style:"margin-top: 20px;",
    className:null,
    positionId:"contents",
    columns:[
            {
                text:"任务顺序",
                calssName:"id",
                index:0
            },
            {
                text:"ID",
                calssName:"id",
                index:1
            },
            {
                text:"起始地址",
                calssName:"stockName",
                index:2
            },
            {
                text:"目的地址",
                calssName:"destination",
                index:3
            },
            {
                text:"料架号",
                calssName:"stockName",
                index:4
            },
            {
                text:"任务类型",
                calssName:"taskType",
                index:5
            },
            {
                text:"操作",
                calssName:"",
                index:6
            }
    ]
}
function createTable(model,data){
    var columns=model.columns;
    var positionid=model.positionId;
    var position=document.getElementById(positionid);
    var tablehtml=document.createElement("table");
    console.log(data[0]);
    console.log(data[0][columns[0].calssName]);
    tablehtml.style=model.style;
    //头部
    var theadhtml=document.createElement("thead");
    var thRowhtml=document.createElement("tr");
    for(var thj = 0; thj < columns.length; thj++){
        var thColhtml=document.createElement("th");
        var thtext=document.createTextNode(columns[thj].text);
        thColhtml.appendChild(thtext);
        thRowhtml.appendChild(thColhtml);
    }
    theadhtml.appendChild(thRowhtml);
    //内容
    var tbodyhtml=document.createElement("tbody");
    for(var i = 0; i < data.length; i++){
        var row=data[i];
        var rowhtml=document.createElement("tr");
        for(var j = 0; j < columns.length; j++){
            var colhtml=document.createElement("td");
            var text=document.createTextNode("");
            if(!(columns[j].calssName==null||columns[j].calssName=="")){
                text=document.createTextNode(row[columns[j].calssName]);
            }
            colhtml.appendChild(text);
            rowhtml.appendChild(colhtml);
        }
        tbodyhtml.appendChild(rowhtml);
    }
    console.log(tablehtml);
    tablehtml.appendChild(theadhtml);
    tablehtml.appendChild(tbodyhtml);
    position.appendChild(tablehtml);
}
function initializeTable(){
    $.ajax({
         cache:false,
         type:"POST",
         dataType : "json", 
         url:"${ctx}/Config/selectOutTasks",
         success:function(data){
             console.log(data);
             console.log(data[0][0]);
             /* for(var i = 0; i < data.length; i++){
                 data[i][0]
             }
             createTable(Tb,data); */
              
         }
     }); 
}
function initializeTable2(){
    //$('#OneContent').empty();
    /* var tablehteml="<table class='One'><thead><tr><th>任务顺序</th><th>ID</th><th>起始地址</th><th>目的地址</th><th>料架号</th><th>任务类型</th><th>操作</th></tr></thead>";
    tablehteml+="<tbody id='station'></tbody>";
    $('#Content').append(tablehteml); */
    $.ajax({
         cache:false,
         type:"POST",
         dataType : "json", 
         url:"${ctx}/Config/selectOutTasks",
         success:function(data){                        
              console.log(data);
              var html="";
              for(var i = 0; i < data.length; i++){
                  var row=data[i];
                  html+="<tr>";
                  html+="<td>"+(i+1)+"</td>";
                  html+="<td class='taskid'>"+row.id+"</td>";
                  html+="<td>"+row.stockName+"</td>";
                  html+="<td>"+row.destination+row.rackNumber+"</td>";
                  html+="<td>"+row.stockName+"</td>";
                  html+="<td>"+row.taskType+"</td>";
                  html+="<td>";
                  html+="<button class='btn btn-default btn-lg' style='margin-right:10px;' onclick='taskCancel(this)'>失败</button>";
                  html+="<button class='btn btn-default btn-lg' style='margin-right:10px;' onclick='taskCancel(this)'>完成</button>";
                  html+="<button class='btn btn-default btn-lg' style='margin-right:10px;' onclick='taskCancel(this)'>取消</button>";
                  html+="</td>";
                  html+="</tr>";
              }
              $('#OneContent').append(html);
         }
     }); 
}
/*操作【取消/重新发送/完成】*/    
function taskCancel(oneself){
    var Controls=oneself.innerHTML;
    var row=oneself.parentNode.parentNode;
    var taskid=row.getElementsByClassName("taskid")[0].innerHTML;
    console.log(Controls);
    $.ajax({
         cache:false,
         type:"POST",
         dataType : "json", 
          url:"${ctx}/Config/updateTask",
          data:{
              "taskid":taskid,
              "Controls":Controls
          },success:function(data){  
             // 刷新当前页面
               
              //window.location.href="${ctx }/Config/updateTask;";
         }
     });
    location.reload();
}
</script>
</head>
<body>
    <div class="content-wrapper" style="background-color: white;">
        <section class="content-header">
            <div id="Top">
                <!-- <button class="btn" style="background-color: #fd5f56;" onclick="delAll()">批量删除</button> -->
                <button class="btn" onclick="modifyraw()">添加手动任务</button>
                <span style="float: right; line-height: 40px"></span>
            </div>
            <div class="modal fade" id="add-fix-info" tabindex="-1" role="dialog"
                aria-labelledby="myModalLabel" aria-hidden="true">
                <div class="modal-dialog" style="width: 100%; height: 100%;">
                    <div class="modal-content"
                        style="width: 1000px; margin: auto;">
                        <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>
                        <!--提交-->
                        <form class="form-horizontal" role="form" id="category_add" action="${ctx}/Config/addTask" method="post">
                            <div style="margin-top: 20px;">
                                <!-- 机器逻辑配置添加 -->
                                <table class="two" id="addManualOperation">
                                    <thead>
                                        <tr>
                                            <th>序号</th>
                                            <th>起始地址</th>
                                            <th>目标地址</th>
                                            <!-- <th>操作</th> -->
                                        </tr>
                                    </thead>
                                    <tbody id="station">
                                        
                                    </tbody>
 
                                </table>
                            </div>
                            <div class="modal-footer">
                                <button type="button" class="btn btn-default btn-lg" data-dismiss="modal">关闭</button>
                                <button type="submit" class="btn btn-primary btn-lg" id="addbtnsubmit">提交</button>
                            </div>
                        </form>
                    </div>
                </div>
            </div>
        </section>
        
        <section class="content container-fluid">
            <div id="contents">
                <!-- <table class="One">
                    <thead>
                        <tr>
                            <th>任务顺序</th>
                            <th>ID</th>
                            <th>起始地址</th>
                            <th>目的地址</th>
                            <th>料架号</th>
                            <th>任务类型</th>
                            <th>操作</th>
                        </tr>
                    </thead>
                    <tbody id='OneContent'>
                        
                    </tbody> -->
 
                </table>
            </div>
        </section>
    </div>
</body>
</html>