czt
2025-05-23 bb1b4579482abc4b2bc5ba244f68bc5d0ab87f2e
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
var layer;
var depotId;// 当前仓库id
var curData;// 当前仓粮情数据
var mapData;// 根据日期查询的每个仓库一条数据
var form;
var table;
var checkType;
var listData;// 默认页面中的粮情列表
var gasConf;// 气体采集配置信息,包括开始采集点和截至采集点。
 
$(function() {
    layui.use([ 'layer', 'laydate', 'form', 'table' ], function() {
        form = layui.form;
        layer = layui.layer;
        var laydate = layui.laydate;
        table = layui.table;
 
        // 日期
        laydate.render({
            elem : '#checkDateMore',
            theme : '#7b8e9f'
        });
        
        laydate.render({
            elem : '#printCheckDate',
            theme : '#7b8e9f'
        });
 
        // 监听仓库选择
        form.on('select(select_depotId)', function(obj) {
            flushData(null);
 
            //获取当前仓库效果图
            // cutImg(obj.value);
            //根据仓库编码切换采集点位置
            // cutPoint(obj.value);
        });
 
        // 监听选择批次
        form.on('select(select_batchId)', function(obj) {
            var value = obj.value;
            if (value == "0") {// 表示弹出更多批次
                showMore();
            } else {
                flushByBatchId(value);
            }
        });
        flushData(null);
    });
});
 
//根据采集进度信息渲染采集点效果
function renderCheckPoint(checkProgress) {
    if (depotId != checkProgress.depotId) {
        $("#progress-info").text("");
        return;
    }
    
    $("#progress-info").text(checkProgress.msg);
    //首先除去已有效果
    $(".qt-pic-icon-active").removeClass("qt-pic-icon-active");
 
    var id = "#point" + checkProgress.checkPoint+"-left";
    $(id).addClass("qt-pic-icon-active");
    id = "#point" + checkProgress.checkPoint+"-right";
    $(id).addClass("qt-pic-icon-active");
}
 
/**
 * 切换采集点
 * @param depotId
 */
function cutPoint(depotId) {
    //首先除去已有效果
    $(".qt-pic-icon-active").removeClass("qt-pic-icon-active");
    //根据义乌这边直接判断
    if("0135,0137,0139,0141,0143,0145,0147,0149,0151,0153".indexOf(depotId) >=0 ){
        $("#list-point-right").css("display","block");
        $("#list-point-left").css("display","none");
    }else{
        $("#list-point-right").css("display","none");
        $("#list-point-left").css("display","block");
    }
}
 
// 单仓打印
function printSingle() {
    layer.msg("暂未对接!");
    return;
    layer.msg("开始生成打印模版……");
    var html = builderModel(curData,dept);
    layer.msg("开始调用打印机程序预览……");
    previewA4(html);
};
 
// 批量打印
function printBatch() {
    layer.msg("暂未对接!");
    return;
    // 首先去除之前的选择
    var name;
    $('#batchPrintSelect input').each(function() {
        name = $(this).prop("name");
        if (name == "printCheckDate") {// 跳过
            return true;
        }
        $(this).prop("disabled", false);
        $(this).prop("checked", false);
    });
    form.render();
 
    // 弹出选择框
    layer.open({
        type : 1,
        title : '批量打印(红色表示没有检测记录,默认为当天)',
        area : [ '690px', '450px' ],
        shade : 0,
        content : $('#batchPrintSelect'),
        btn : [ '全选', '反选', '重选', '打印预览', '取消打印' ],
        yes : function() {
            var disabled, name;
            $('#batchPrintSelect input').each(function() {
                disabled = $(this).prop("disabled");
                name = $(this).prop("name");
                if (name == "printCheckDate" || disabled) {
                } else {
                    $(this).prop("checked", true);
                }
            });
            form.render();
        },
        btn2 : function() {
            var disabled, name;
            $('#batchPrintSelect input').each(function() {
                disabled = $(this).prop("disabled");
                name = $(this).prop("name");
                if (name == "printCheckDate" || disabled) {
                    // 不做处理
                } else {
                    if ($(this).prop("checked")) {
                        $(this).prop("checked", false);
                    } else {
                        $(this).prop("checked", true);
                    }
                }
            });
            form.render();
            return false;
        },
        btn3 : function() {
            var disabled, name;
            $('#batchPrintSelect input').each(function() {
                disabled = $(this).prop("disabled");
                name = $(this).prop("name");
                if (name == "printCheckDate" || disabled) {
                    // 不做处理
                } else {
                    $(this).prop("checked", false);
                }
            });
            form.render();
            return false;
        },
        btn4 : function() {
            printBatchTodo();
        },
        btn5 : function() {
            layer.close(0);
        },
        closeBtn : 0
    });
 
    // 默认调用获取数据更新
    $("#printCheckDate").prop("value", dateFtt("yyyy-MM-dd", new Date()));
    getPrintBatchDepot();
};
 
// 获取批量打印的信息
function getPrintBatchDepot() {
    layer.msg("验证粮情检测记录……");
    var checkDate = $("#printCheckDate").val();
    $.ajax({
        type : "POST",
        url : "../../basic/gas/query-checkDate-map",
        dataType : "json",
        contentType : "application/json;charset=UTF-8",
        data : JSON.stringify({
            checkDate : checkDate
        }),
        success : function(result) {
            if (result.code != "0000") {
                layer.msg(result.msg);
                // 设置所有仓库不可选
                var name;
                $('#batchPrintSelect input').each(function() {
                    name = $(this).prop("name");
                    if (name != "printCheckDate") {// 跳过
                        $(this).prop("disabled", true);
                    }
                });
                form.render();
 
            } else {
                mapData = result.data;
 
                // 动态调整仓库是否可以选择
                var name, value;
                $('#batchPrintSelect input').each(function() {
                    name = $(this).prop("name");
                    value = $(this).val();
                    if (name != "printCheckDate") {// 跳过
                        if (mapData[value]) {
                            $(this).prop("disabled", false);
                        } else {
                            $(this).prop("disabled", true);
                        }
                    }
                });
                form.render();
            }
        },
        error : function() {
            layer.msg("批量打印获取粮情信息失败!");
        }
    });
};
 
// 根据查询的数据批量打印预览
function printBatchTodo() {
    layer.msg("开始批量生成打印模版……");
    var strHtml;
    var value;
    var checked;
    var printData;
    // 将仓库数据列表转换为MAP
    var mapDepot = {};
    $.each(listDepot, function(index, data) {
        mapDepot[data.id] = data;
    });
    var LODOP = getLodop();
    LODOP.PRINT_INIT("气体检测报表");// 初始化在循环外
    LODOP.SET_PRINT_PAGESIZE(1, 0, 0, "A4");
    $('#batchPrintSelect input').each(function() {
        if ($(this).prop("name") == "printCheckDate") {// 跳过
            return true;
        }
        checked = $(this).prop("checked");
        if (checked) {
            value = $(this).val();
            LODOP.NewPage();
            printData = mapData[value];
            if (!printData) {// 如果没有粮情数据跳过执行下一个
                return true;
            }
            printData.depotData = mapDepot[value];
            strHtml = builderModel(printData,dept);
            LODOP.ADD_PRINT_HTM(30, 40, "180mm", "100%", strHtml);
        }
    });
    layer.msg("开始调用打印程序预览……");
    LODOP.PREVIEW();
};
 
 
// 点击刷新操作
function flushData(checkDate) {
    depotId = $("#depotId").val();
    if (!depotId) {
        layer.msg("请先选择仓库!");
        return;
    }
    cleanData();
    listData = [{"batchId":"202407151349","checkNum":5,"checkUser":"管理员","companyId":"1000","depotData":{"bulkWeight":600,"companyId":"1000","depotStatus":"1","depotStatusName":"空仓","depotType":"01","depotTypeName":"平房仓","deptId":"P0101","foodLevel":"02","foodLevelName":"二等","foodType":"122","foodTypeName":"市级地方储备粮","foodVariety":"1131","id":"LA02","name":"P01-01","orderNum":5,"storageMax":5000000,"storageReal":0,"storeKeeperLevel":"高级保管员","storeKeeperPhone":"####","storeType":"1"},"depotId":"LA02","listPoint":[{"passCode":1,"perCo2":497,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 13:50"},{"passCode":2,"perCo2":497,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 13:50"},{"passCode":3,"perCo2":496,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 13:50"},{"passCode":4,"perCo2":496,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 13:50"},{"passCode":5,"perCo2":482,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 13:50"}],"perCo2":493.6,"perCo2Max":497,"perCo2Min":482,"perN2":74.9,"perN2Max":74.9,"perN2Min":74.9,"perO2":25,"perO2Max":25,"perO2Min":25,"perPh3":0,"perPh3Max":0,"perPh3Min":0,"points":"1,497.0,25.0,0.0,74.9;2,497.0,25.0,0.0,74.9;3,496.0,25.0,0.0,74.9;4,496.0,25.0,0.0,74.9;5,482.0,25.0,0.0,74.9;","receiveDate":"2024-07-15 13:50","strReceiveDate":"2024-07-15 13:50","sysDate":1747964186612,"type":"0"},{"batchId":"202407141532","checkNum":5,"checkUser":"管理员","companyId":"1000","depotData":{"$ref":"$[0][0].depotData"},"depotId":"LA02","listPoint":[{"passCode":1,"perCo2":416,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 14:50"},{"passCode":2,"perCo2":408,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 14:50"},{"passCode":3,"perCo2":412,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 14:50"},{"passCode":4,"perCo2":433,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 14:50"},{"passCode":5,"perCo2":484,"perN2":74.9,"perO2":25,"perPh3":0,"receiveDate":"2024-07-15 14:50"}],"perCo2":430.6,"perCo2Max":484,"perCo2Min":408,"perN2":74.9,"perN2Max":74.9,"perN2Min":74.9,"perO2":25,"perO2Max":25,"perO2Min":25,"perPh3":0,"perPh3Max":0,"perPh3Min":0,"points":"1,416.0,25.0,0.0,74.9;2,408.0,25.0,0.0,74.9;3,412.0,25.0,0.0,74.9;4,433.0,25.0,0.0,74.9;5,484.0,25.0,0.0,74.9;","receiveDate":"2024-07-15 14:50","strReceiveDate":"2024-07-14 15:32","sysDate":1747964186613,"type":"0"}];
    if(!listData) return;
    curData = listData[0];
 
    // 渲染数据
    renderDataInfo();
 
    // 在批次选择中添加下拉数据
    resetSelectBatchId();
 
    // 调用全部关闭
    layer.closeAll();
    layer.msg("更新成功……");
 
    // var data = {
    //     depotId : depotId,
    //     checkDate : checkDate
    // };
    // $.ajax({
    //     type : "POST",
    //     url : "../../basic/gas/list-data",
    //     dataType : "json",
    //     contentType : "application/json;charset=UTF-8",
    //     data : JSON.stringify(data),
    //     success : function(result) {
    //         if (result.code != "0000") {
    //             layer.msg(result.msg);
    //         }
    //         listData = result.data;
    //         if(!listData) return;
    //         curData = listData[0];
    //
    //         // 渲染数据
    //         renderDataInfo();
    //
    //         // 在批次选择中添加下拉数据
    //         resetSelectBatchId();
    //
    //         // 调用全部关闭
    //         layer.closeAll();
    //         layer.msg("更新成功……");
    //     },
    //     error : function() {
    //         layer.msg("根据当前条件获取粮情数据渲染图标失败!!");
    //     }
    // });
};
 
//清空数据
function cleanData() {
    //清空检测时间批次值
    $("#batchId").empty();
    form.render();
 
    $("#perO2").text("#");
    $("#perO2Max").text("#");
    $("#perO2Min").text("#");
 
    $("#perCo2").text("#");
    $("#perCo2Max").text("#");
    $("#perCo2Min").text("#");
 
    $("#perPh3").text("#");
    $("#perPh3Max").text("#");
    $("#perPh3Min").text("#");
 
    $("#perN2").text("#");
    $("#perN2Max").text("#");
    $("#perN2Min").text("#");
 
    $("#tableInfo").html("");
}
 
//切换仓库图片
function cutImg(depotId) {
 
    //取仓库配置图片
    var gasImg = gasImgMap[depotId];
    var imgPath = "../../basic/file/getImg?filePath=" + gasImg.fileImg;
 
    $("#depot_img").attr("src", imgPath);
}
 
function renderTableInfo() {
    var listPoint = curData.listPoint;
    var tableHtml = "<table class=\"layui-table\" lay-even lay-skin=\"nob\">";
    tableHtml += "<colgroup><col width=\"20%\"><col width=\"20%\"><col width=\"20%\"><col width=\"20%\"><col></colgroup>";
    if(curData.type && curData.type == "1"){
        tableHtml += "<thead><tr><th style='background: #c2c2c2;' colspan='5'>检测类型:熏蒸检测</th></tr></thead>";
    }else {
        tableHtml += "<thead><tr><th style='background: #c2c2c2;' colspan='5'>检测类型:常规检测</th></tr></thead>";
    }
    tableHtml += "<thead><tr><th>通道</th><th>CO2</th><th>O2</th><th>PH3</th><th>N2</th></tr></thead>";
    tableHtml += "<tbody>";
    // 动态创建表格
    $.each(listPoint, function(index, item) {
        tableHtml += "<tr><td>" + item.passCode + "</td>";
        tableHtml += "<td>" + (item.perCo2== -100 ? "#" : item.perCo2) + "</td>";
        tableHtml += "<td>" + (item.perO2== -100 ? "#" : item.perO2) + "</td>";
        tableHtml += "<td>" + (item.perPh3== -100 ? "#" : item.perPh3) + "</td>";
        tableHtml += "<td>" + (item.perN2== -100 ? "#" : item.perN2) + "</td></tr>";
    });
    tableHtml += "</tbody></table>";
    $("#tableInfo").html(tableHtml);
};
 
// 回填检测信息
function renderDataInfo() {
    $("#perCo2").text(curData.perCo2 == -100 ? "#" : curData.perCo2);
    $("#perO2").text(curData.perO2 == -100 ? "#" : curData.perO2);
    $("#perPh3").text(curData.perPh3 == -100 ? "#" : curData.perPh3);
    $("#perN2").text(curData.perN2 == -100 ? "#" : curData.perN2);
 
    $("#perO2Max").text(curData.perO2Max == -100 ? "#" : curData.perO2Max);
    $("#perO2Min").text(curData.perO2Min == -100 ? "#" : curData.perO2Min);
 
    $("#perCo2Max").text(curData.perCo2Max == -100 ? "#" : curData.perCo2Max);
    $("#perCo2Min").text(curData.perCo2Min == -100 ? "#" : curData.perCo2Min);
 
    $("#perPh3Max").text(curData.perPh3Max == -100 ? "#" : curData.perPh3Max);
    $("#perPh3Min").text(curData.perPh3Min == -100 ? "#" : curData.perPh3Min);
 
    $("#perN2Max").text(curData.perN2Max == -100 ? "#" : curData.perN2Max);
    $("#perN2Min").text(curData.perN2Min == -100 ? "#" : curData.perN2Min);
 
    renderTableInfo();
};
 
// 根据批次更新的值调整
function flushByBatchId(batchId) {
    var temp;
    $.each(listData, function(index, item) {
        if (item.batchId == batchId) {
            temp = item;
            return false;
        }
    });
    if (temp) {
        curData = temp;
        renderDataInfo();
        layer.msg("更新成功……");
    }
};
 
// 重置批次下拉框
function resetSelectBatchId() {
    // 首先清空原来的值
    $("#batchId").empty();
    // 未下拉框赋值
    $.each(listData, function(index, item) {
        $('#batchId').append(new Option(item.receiveDate, item.batchId));// 下拉菜单里添加元素
    });
    $('#batchId').append(new Option("选择时间……", "0"));
    form.render();
};
 
// 更多批次选择
function showMore() {
    layer.open({
        type : 1,
        title : '请选择时间',
        area : [ '380px', '250px' ],
        shade : 0,
        content : $('#dialogMoreSelect'),
        btn : [ '确认选择', '取消' ],
        yes : function() {
            var checkDateMore = $("#checkDateMore").val();
            if (checkDateMore) {
                flushData(checkDateMore);
            } else {
                layer.msg("请先确认时间!");
            }
        },
        btn2 : function() {
            layer.close(0);
        },
        closeBtn : 0
    });
};
 
// 气体采集的入口方法,type=1,表示整仓采集;type=2,表示选择采集,type=3表示多仓采集
function checkStart(type) {
    layer.msg("暂未对接!");
    return;
    checkType = $("input[name='type']:checked").val();
    if(!checkType){
        layer.msg("请先选择检测类型!");
        return;
    }
    if (3 == type) {
        checkBatch();
        return;
    }
 
    // 整仓采集和选择采集需要获取到气体的配置信息后进行操作
    depotId = $("#depotId").val();
    if (!depotId) {
        layer.msg("请先选择仓库!");
        return;
    }
 
    if (gasConf && gasConf.depotId == depotId) {
        if (1 == type) {
            check();
        }
        if (2 == type) {
            checkSelect();
        }
        return;
    }
 
    layer.msg("获取当前仓库的配置信息……");
    var data = {
        depotId : depotId
    };
    $.ajax({
        type : "POST",
        url : "../../basic/gas/gas-conf",
        dataType : "json",
        contentType : "application/json;charset=UTF-8",
        data : JSON.stringify(data),
        success : function(result) {
            if (result.code != "0000") {
                layer.msg(result.msg);
                return;
            }
            gasConf = result.data;
            if (1 == type) {
                check();
                return;
            }
            if (2 == type) {
                checkSelect();
                return;
            }
        },
        error : function() {
            layer.msg("获取当前仓库配置信息失败!");
        }
    });
 
};
 
// 单个粮情检测
function check() {
    layer.msg("开始气体检测……");
    var data = {
        depotId : depotId,
        type : checkType
    };
    $.ajax({
        type : "POST",
        url : "../../basic/gas/check-single",
        dataType : "json",
        contentType : "application/json;charset=UTF-8",
        data : JSON.stringify(data),
        success : function(result) {
            if (result.code != "ORDER_SUCCESS") {
                if (result.msg) {
                    layer.msg(result.msg);
                } else {
                    layer.msg("执行出现异常,请重试或联系管理员");
                }
            } else {
                layer.msg("命令已经成功发送,待终端响应……");
            }
        },
        error : function() {
            layer.msg("气体检测出现异常,执行失败!");
        }
    });
};
 
// 选择采集点采集
function checkSelect() {
    // 弹出选择框,选择信息
    var gasStart = gasConf.gasStart, gasEnd = gasConf.gasEnd;
    var strHtml = "";
    for (var i = gasStart; i <= gasEnd; i++) {
        if (i < 10) {
            strHtml += "<input title='位置0" + i + "' type='checkbox' value='"
                    + i + "'>";
            strHtml += "<div class='layui-unselect layui-form-checkbox'><span>位置0"
                    + i
                    + "</span><i class='layui-icon layui-icon-ok'></i></div>";
        } else {
            strHtml += "<input title='位置" + i + "' type='checkbox' value='" + i
                    + "'>";
            strHtml += "<div class='layui-unselect layui-form-checkbox'><span>位置"
                    + i
                    + "</span><i class='layui-icon layui-icon-ok'></i></div>";
        }
    }
    $("#div_point_select").html(strHtml);
    form.render();
 
    // 开始选择
    layer.open({
        type : 1,
        title : '选择采集点(全选请使用整仓采集)',
        area : [ '690px', '450px' ],
        shade : 0,
        content : $('#pointSelect'),
        btn : [ '全选', '反选', '重选', '确定检测', '取消检测' ],
        yes : function() {
            $('#pointSelect input').each(function() {
                $(this).prop("checked", true);
            });
            form.render();
        },
        btn2 : function() {
            $('#pointSelect input').each(function() {
                if ($(this).prop("checked")) {
                    $(this).prop("checked", false);
                } else {
                    $(this).prop("checked", true);
                }
            });
            form.render();
            return false;
        },
        btn3 : function() {
            $('#pointSelect input').each(function() {
                $(this).prop("checked", false);
            });
            form.render();
            return false;
        },
        btn4 : function() {
            return checkSelectStep2();
        },
        btn5 : function() {
            layer.close(0);
        },
        closeBtn : 1
    });
};
 
// 执行采集点检测
function checkSelectStep2() {
    // 获取选择的采集点
    var checkPoints = "";
    $('#pointSelect input').each(function() {
        if ($(this).prop("checked")) {
            checkPoints += $(this).val() + ",";
        }
    });
 
    if (checkPoints == "") {
        layer.msg("请选择需要检测的采集点");
        return false;
    }
    layer.msg("开始气体检测……");
    var data = {
        depotId : depotId,
        type : checkType,
        checkPoints : checkPoints
    };
    $.ajax({
        type : "POST",
        url : "../../basic/gas/check-select",
        dataType : "json",
        contentType : "application/json;charset=UTF-8",
        data : JSON.stringify(data),
        success : function(result) {
            if (result.code != "ORDER_SUCCESS") {
                if (result.msg) {
                    layer.msg(result.msg);
                } else {
                    layer.msg("执行出现异常,请重试或联系管理员");
                }
                return false;
            } else {
                layer.msg("命令已经成功发送,待终端响应……");
                return true;
            }
        },
        error : function() {
            layer.msg("气体检测出现异常,执行失败!");
            return false;
        }
    });
    return true;
};
 
// 批量粮情采集
function checkBatch() {
    // 首先去除之前的选择
    $('#batchCheckSelect input').each(function() {
        $(this).prop("checked", false);
    });
    form.render();
 
    // 弹出选择框
    layer.open({
        type : 1,
        title : '批量采集选择',
        area : [ '690px', '450px' ],
        shade : 0,
        content : $('#batchCheckSelect'),
        btn : [ '全选', '反选', '重选', '执行采集', '取消采集' ],
        yes : function() {
            $('#batchCheckSelect input').each(function() {
                $(this).prop("checked", true);
            });
            form.render();
        },
        btn2 : function() {
            $('#batchCheckSelect input').each(function() {
                if ($(this).prop("checked")) {
                    $(this).prop("checked", false);
                } else {
                    $(this).prop("checked", true);
                }
            });
            form.render();
            return false;
        },
        btn3 : function() {
            $('#batchCheckSelect input').each(function() {
                $(this).prop("checked", false);
            });
            form.render();
            return false;
        },
        btn4 : function() {
            return checkBatchStep2();
        },
        btn5 : function() {
            layer.close(0);
        },
        closeBtn : 0
    });
};
 
/**
 * 开始执行批量检测
 */
function checkBatchStep2() {
    var depotIds = "";
    $('#batchCheckSelect input').each(function() {
        if ($(this).prop("checked")) {
            depotIds += $(this).val() + ",";
        }
    });
 
    if (depotIds == "") {
        layer.msg("请先选择需要检测的仓库……");
        return false;
    }
    layer.msg("开始执行批量检测……");
    // 调用后台批量检测
    var data = {
        depotIds : depotIds,
        type : checkType
    };
    $.ajax({
        type : "POST",
        url : "../../basic/gas/check-batch",
        dataType : "json",
        contentType : "application/json;charset=UTF-8",
        data : JSON.stringify(data),
        success : function(result) {
            if (result.code != "ORDER_SUCCESS") {
                if (result.msg) {
                    layer.msg(result.msg);
                } else {
                    layer.msg("执行出现异常,请重试或联系管理员");
                }
                return false;
            } else {
                layer.msg("命令已经成功发送,待终端响应……");
                return true;
            }
        },
        error : function() {
            layer.msg("检测出现异常,执行失败!");
            return false;
        }
    });
    return true;
};
 
function gasChart() {
    layer.msg("功能暂未开放……");
};