#
luxiaotao1123
2021-02-24 ae69d9098bdc5e641c20213d0ab2e6028bf5d4b0
src/main/webapp/views/pda/stockIn.html
@@ -71,18 +71,12 @@
<!-- 头部 -->
<header>
    <div class="layui-input-inline">
        <label class="layui-form-label">条码</label>
        <input class="layui-input" type="number" id="code" onkeyup="findCode(this)" oninput="if(value.length>8)value=value.slice(0,8)" placeholder="扫码 / 输入" autocomplete="off">
        <label class="layui-form-label" style="width: 84px">托盘码</label>
        <input class="layui-input" type="text" id="code" onkeyup="findCode(this)" oninput="if(value.length>8)value=value.slice(0,8)" placeholder="扫码 / 输入" autocomplete="off">
    </div>
    <div style="margin: 5px 5px" class="layui-form">
        <button id="mat-btn" type="button" class="layui-btn layui-btn-normal" onclick="getMat()"><i class="layui-icon">+</i>提取</button>
        <!-- 入库口 -->
        <div class="layui-inline" style="width: 120px; margin-left: 15px">
            <select id="putSiteSelect">
                <option value="">入库口</option>
            </select>
        </div>
    <div STYLE="margin: 5px 0" class="layui-input-inline">
        <label class="layui-form-label">上架货位</label>
        <input class="layui-input" type="text" id="node" onkeyup="findNode(this)" placeholder="扫码 / 输入" autocomplete="off">
    </div>
</header>
@@ -103,7 +97,6 @@
    var tableIns;
    window.onload = function(){
        document.getElementById("code").focus();
        getInBound();
    }
@@ -131,33 +124,35 @@
    });
    function findCode(el) {
        if (isEmpty(el.value)) {
            return;
        }
        $.ajax({
            url: baseUrl + "/mobile/inStock/auth",
            headers: {'token': localStorage.getItem('token')},
            data: {
                zpallet: el.value
            },
            method: 'POST',
            success: function (res) {
                if (res.code === 200) {
                    if (res.data != null) {
                        console.log(res.data);
                    }
                } else if (res.code === 403) {
                    top.location.href = baseUrl + "/pda";
                } else {
                    alert(res.msg)
                }
            }
        })
    }
    function findNode(el) {
        if (el.value.length === 7) {
            $('#mat-btn').focus();
            getMat();
        }
    }
    // 获取入库口
    function getInBound(){
        $.ajax({
            url: baseUrl+"/available/put/site",
            headers: {'token': localStorage.getItem('token')},
            method: 'POST',
            async: false,
            success: function (res) {
                if (res.code === 200){
                    var tpl = $("#putSiteSelectTemplate").html();
                    var template = Handlebars.compile(tpl);
                    var html = template(res);
                    $('#putSiteSelect').append(html);
                    layui.form.render('select');
                } else if (res.code === 403){
                    top.location.href = baseUrl+"/pda";
                }else {
                    tips("获取入库口失败", true)
                }
            }
        })
    }
    // 提取物料
@@ -316,10 +311,5 @@
            $("#code").focus();
        }
    }
</script>
<script type="text/template" id="putSiteSelectTemplate">
    {{#each data}}
    <option value="{{this}}">{{this}}</option>
    {{/each}}
</script>
</html>