#
LSH
2023-07-10 495b677051e2cbb6a26c0f1e55d9b7f85c5cb9f3
src/main/webapp/views/pipeline.html
@@ -58,33 +58,27 @@
                    <!-- 设备任务操作 -->
                    <div class="io-mode-oper">
                        <fieldset>
                            <legend>入出库模式(IO-Mode)</legend>
                            <legend>充电控制(Charge-Mode)</legend>
                            <div class="io-mode-box">
                                <label>1F</label>
                                <label>1#</label>
                                <button id="io-mode-1" class="ioModeBtn" onclick="ioModeSwitch(this.id)"> - </button>
                            </div>
                            <div class="io-mode-box">
                                <label>3F</label>
                                <label>2#</label>
                                <button id="io-mode-2" class="ioModeBtn" onclick="ioModeSwitch(this.id)"> - </button>
                            </div>
                            <div class="io-mode-box">
                                <label>4F</label>
                                <label>3#</label>
                                <button id="io-mode-3" class="ioModeBtn" onclick="ioModeSwitch(this.id)"> - </button>
                            </div>
                            <div class="io-mode-box">
                                <label>5F</label>
                                <button id="io-mode-4" class="ioModeBtn" onclick="ioModeSwitch(this.id)"> - </button>
                            </div>
                        </fieldset>
                    </div>
                    <div>
                        <span style="color: #1E9FFF">PLC异常信息表:</span>
                    </div>
                </div>
                <!-- 主体 -->
                <div class="plc-log-body">
                    <div>
                        <span style="color: #1E9FFF">PLC异常信息表:</span>
                    </div>
                    <table id="plc-error-table">
                        <thead>
                        <tr>
@@ -175,6 +169,7 @@
    var siteTableFullRows = 0;
    var outputDom = document.getElementById("output");
    $(document).ready(function() {
        getIoModeInfo();
        initPlcErrorTable();
        getPlcError();
        initSiteTable();
@@ -184,10 +179,69 @@
    setInterval(function () {
        getPlcError();
        getSite();
        getIoModeInfo();
    }, 1000);
    setInterval(function () {
        getSiteOutput();
    },500);
    var ioModeData;
    function getIoModeInfo() {
        $.ajax({
            url: baseUrl+ "/site/io/mode/info/site",
            headers: {'token': localStorage.getItem('token')},
            method: 'GET',
            success: function (res) {
                if (res.code === 200){
                    ioModeData = res.data;
                    ioModeData.forEach(function (e) {
                        $("#io-mode-"+e.floor).html(e.modeDesc);
                    })
                } else if (res.code === 403){
                    window.location.href = baseUrl+"/login";
                }  else {
                    console.log(res.msg);
                }
            }
        });
    }
    /**
     * 强制切换入出库模式
     */
    function ioModeSwitch(el) {
        var floor = el.split("-")[2];
        if (ioModeData != null && ioModeData.length > 1) {
            ioModeData.forEach(function(e) {
                if (e.floor === Number(floor)) {
                    console.log()
                    layer.confirm('确定切换充电状态吗?',function () {
                        $.ajax({
                            url: baseUrl+ "/site/io/mode/action/site",
                            headers: {'token': localStorage.getItem('token')},
                            data: {
                                floor: e.floor,
                                charge: !e.modeVal
                            },
                            method: 'POST',
                            success: function (res) {
                                if (res.code === 200){
                                    layer.msg("操作成功,请耐心等待一分钟", {icon: 1})
                                } else if (res.code === 403){
                                    window.location.href = baseUrl+"/login";
                                }  else {
                                    console.log(res.msg);
                                }
                            }
                        });
                        layer.closeAll();
                    })
                }
            });
        }
    }
    // plc异常信息表获取
    function getPlcError() {
@@ -230,16 +284,57 @@
                        siteTableFullRows = table.length;
                    }
                    for (var i=1;i<=table.length;i++){
                        var current = table[i-1]
                        var tr = tableEl.find("tr").eq(i);
                        setVal(tr.children("td").eq(0), table[i-1].devNo);
                        setVal(tr.children("td").eq(1), table[i-1].workNo);
                        setVal(tr.children("td").eq(2), table[i-1].autoing);
                        setVal(tr.children("td").eq(3), table[i-1].loading);
                        setVal(tr.children("td").eq(4), table[i-1].inEnable);
                        setVal(tr.children("td").eq(5), table[i-1].outEnable);
                        setVal(tr.children("td").eq(6), table[i-1].pakMk);
                        setVal(tr.children("td").eq(7), table[i-1].emptyMk);
                        setVal(tr.children("td").eq(8), table[i-1].staNo);
                        var devNo = current.devNo, autoing = current.autoing,workNo = current.workNo,
                            loading = current.loading,inEnable = current.inEnable,outEnable = current.outEnable,
                            emptyMk = current.emptyMk,pakMk = current.pakMk,staNo = current.staNo;
                        if (autoing === "N") {
                            tr.children("td").eq(2).css("background-color","#c8c9cc").css("color","white")
                        }
                        // 入库站点判断
                        if (devNo === 103 || devNo === 203) {
                            // 判断是否自动且有物
                            if (autoing === "Y" && loading === "Y") {
                                // 判断当前工作号是否为满托入库任务
                                if (workNo === 9996) {
                                    if (emptyMk === "Y") {
                                        tr.children("td").eq(7).css("background-color","#fab6b6").css("color","white")
                                    }
                                    if (inEnable === "N") {
                                        tr.children("td").eq(4).css("background-color","#fab6b6").css("color","white")
                                    }
                                    if (pakMk === "N") {
                                        tr.children("td").eq(6).css("background-color","#fab6b6").css("color","white")
                                    }
                                }
                            }
                        }
                        // 堆垛机出库站点判断
                        if (devNo === 104 || devNo === 108 || devNo === 204 || devNo === 208) {
                            if (autoing === "Y") {
                                if (outEnable === "N") {
                                    // tr.children("td").eq(5).css("background-color","#fab6b6").css("color","white")
                                }
                            }
                        }
                        // 堆垛机入库站点判断
                        if (devNo === 107 || devNo === 111 || devNo === 211 || devNo === 207) {
                            if (autoing === "Y") {
                                if (inEnable === "N") {
                                    // tr.children("td").eq(4).css("background-color","#fab6b6").css("color","white")
                                }
                            }
                        }
                        setVal(tr.children("td").eq(0), devNo);
                        setVal(tr.children("td").eq(1), workNo);
                        setVal(tr.children("td").eq(2), autoing);
                        setVal(tr.children("td").eq(3), loading);
                        setVal(tr.children("td").eq(4), inEnable);
                        setVal(tr.children("td").eq(5), outEnable);
                        setVal(tr.children("td").eq(6), pakMk);
                        setVal(tr.children("td").eq(7), emptyMk);
                        setVal(tr.children("td").eq(8), staNo);
                    }
                } else if (res.code === 403){
                    window.location.href = baseUrl+"/login";