#
luxiaotao1123
2021-02-24 ae69d9098bdc5e641c20213d0ab2e6028bf5d4b0
src/main/webapp/views/pda/stockIn.html
@@ -97,7 +97,6 @@
    var tableIns;
    window.onload = function(){
        document.getElementById("code").focus();
        getInBound();
    }
@@ -125,10 +124,28 @@
    });
    function findCode(el) {
        if (el.value.length === 7) {
            $('#mat-btn').focus();
            getMat();
        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) {
@@ -136,29 +153,6 @@
            $('#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)
                }
            }
        })
    }
    // 提取物料
@@ -317,10 +311,5 @@
            $("#code").focus();
        }
    }
</script>
<script type="text/template" id="putSiteSelectTemplate">
    {{#each data}}
    <option value="{{this}}">{{this}}</option>
    {{/each}}
</script>
</html>