From 91f2cd5b0f832091f654cce926585d2f05cad114 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <xltys1995>
Date: 星期四, 08 四月 2021 23:22:32 +0800
Subject: [PATCH] Merge branches 'dev' and 'master' of https://gitee.com/luxiaotao1123/xtywms into master

---
 src/main/webapp/views/pda/locNormalMove.html |  225 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 225 insertions(+), 0 deletions(-)

diff --git a/src/main/webapp/views/pda/locNormalMove.html b/src/main/webapp/views/pda/locNormalMove.html
new file mode 100644
index 0000000..383e33f
--- /dev/null
+++ b/src/main/webapp/views/pda/locNormalMove.html
@@ -0,0 +1,225 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>骞充粨绉诲簱</title>
+    <link rel="stylesheet" href="../../static/layui/css/layui.css" media="all">
+    <link rel="stylesheet" href="../../static/css/pda.css" media="all">
+    <script type="text/javascript" src="../../static/js/jquery/jquery-3.3.1.min.js"></script>
+    <script type="text/javascript" src="../../static/layui/layui.js" charset="utf-8"></script>
+    <script type="text/javascript" src="../../static/js/common.js" charset="utf-8"></script>
+    <script type="text/javascript" src="../../static/js/cool.js" charset="utf-8"></script>
+    <script type="text/javascript" src="../../static/js/handlebars/handlebars-v4.5.3.js"></script>
+</head>
+<body>
+<!-- 澶撮儴 -->
+<header class="layui-form">
+    <div>
+        <div class="layui-input-inline">
+            <label class="layui-form-label">鐗╂枡缂栫爜</label>
+            <input class="layui-input" id="matnr" onkeyup="find()" placeholder="鎵爜 / 杈撳叆"
+                   autocomplete="off" style="width: 60%">
+        </div>
+    </div>
+    <div>
+        <div class="layui-input-inline">
+            <label class="layui-form-label" style="margin-left: 16px">婧愬簱鍖�</label>
+            <!--<input class="layui-input" id="warehouse1" onkeyup="find(true)" placeholder="鎵爜 / 杈撳叆"-->
+                   <!--autocomplete="off" style="width: 60%">-->
+            <div class="layui-input-inline" style="width: 180px">
+                <select id="warehouse1" lay-filter="warehouse1">
+                    <option value="">璇烽�夋嫨</option>
+                </select>
+            </div>
+        </div>
+    </div>
+    <div>
+        <div class="layui-input-inline">
+            <label class="layui-form-label">鐩爣搴撳尯</label>
+            <!--<input class="layui-input" id="warehouse2" placeholder="鎵爜 / 杈撳叆"-->
+                   <!--autocomplete="off" style="width: 60%" onkeyup="exist('uuid', 'locArea', 'warehouse2')">-->
+            <div class="layui-input-inline" style="width: 180px">
+                <select id="warehouse2">
+                    <option value="">璇烽�夋嫨</option>
+                </select>
+            </div>
+        </div>
+    </div>
+</header>
+
+<!-- 涓讳綋 -->
+<main>
+    <table class="layui-table" id="locNormalMove" lay-filter="locNormalMove"></table>
+</main>
+
+<!-- 灏鹃儴 -->
+<footer>
+    <div class="layui-btn-container">
+        <button type="button" id="reset-btn" class="layui-btn layui-btn-primary" onclick="reset()">閲嶇疆</button>
+        <button type="button" id="comb-btn" class="layui-btn layui-btn-normal " onclick="move()"
+                style="margin-left: 20px">杞Щ
+        </button>
+        <button type="button" id="retrun-btn" class="layui-btn layui-btn-primary " onclick="back()"
+                style="margin-left: 20px">杩斿洖
+        </button>
+        <span id="tips"></span>
+    </div>
+</footer>
+
+</body>
+<script>
+    var tableIns;
+    layui.use(['table', 'laydate', 'form'], function () {
+        var table = layui.table;
+        var $ = layui.jquery;
+        var layer = layui.layer;
+        var form = layui.form;
+
+        tableIns = table.render({
+            id: 'locNormalMove',
+            elem: '#locNormalMove',
+            data: [],
+            limit: 500,
+            cellMinWidth: 50,
+            cols: [[
+                {field: 'matnr', align: 'center', title: '缂栫爜', event: 'detail', width: 80},
+                {field: 'maktx', align: 'center', title: '鍚嶇О', event: 'detail'},
+                {field: 'warehouse', align: 'center', title: '搴撳尯', event: 'detail', width: 50},
+                {type: 'checkbox', fixed: 'right', width: 30},
+            ]],
+            done: function (res, curr, count) {
+            }
+        });
+
+        form.on('select(warehouse1)', function (data) {
+            var val = data.value;
+            find(true);
+        });
+
+        // 鑾峰彇浠撳簱涓嬫媺
+        $.ajax({
+            url: baseUrl + "/locArea/queryAll/auth",
+            headers: {'token': localStorage.getItem('token')},
+            method: 'POST',
+            success: function (res) {
+                if (res.code === 200) {
+                    var html = "";
+                    if (res.data && res.data.length > 0) {
+                        html += res.data.map(function (item) {
+                            return "<Option value=" + item.uuid + ">" + item.name + "</Option>";
+                        });
+                    }
+                    $('#warehouse1').append(html);
+                    $('#warehouse2').append(html);
+                    layui.form.render('select');
+                } else if (res.code === 403) {
+                    top.location.href = baseUrl + "/";
+                } else {
+                    layer.msg(res.msg)
+                }
+            }
+        });
+    });
+
+    /* 搴撳瓨杞Щ */
+    move = () => {
+        // 鍒ゆ柇鐩爣搴撳尯鏄惁涓虹┖
+        var warehouse1 = $("#warehouse1").val();
+        var warehouse2 = $("#warehouse2").val();
+        if (!warehouse2 || warehouse2 == '') {
+            layer.msg("璇风‘瀹氱洰鏍囧簱鍖�");
+            return;
+        }
+        if (warehouse1 == warehouse2) {
+            layer.msg("鐩爣搴撳尯鍜屾簮搴撳尯涓嶈兘涓�鑷�");
+            return;
+        }
+        // 鍒ゆ柇鍕鹃�夋暟鎹槸鍚︿负绌�
+        var table = layui.table;
+        var checkStatus = table.checkStatus('locNormalMove');
+        var data = checkStatus.data;
+        if (data.length == 0) {
+            layer.msg("璇烽�夋嫨鐗╂枡");
+            return;
+        }
+        // 澶勭悊鍕鹃�夋暟鎹慨鏀箇arehouse涓虹洰鏍囧簱鍖�
+        data.map(function (item) {
+            item.warehouse = warehouse2;
+        });
+        // 璇锋眰绉诲簱鎺ュ彛锛岄�変腑鐨勭墿鏂欑殑warehouse鏇存柊涓虹洰鏍囧簱鍖�
+        $.ajax({
+            url: baseUrl + "/locNormal/pda/move",
+            headers: {'token': localStorage.getItem('token')},
+            data: JSON.stringify({
+                normalList: data,
+            }),
+            contentType: 'application/json;charset=UTF-8',
+            method: 'POST',
+            async: false,
+            success: function (res) {
+                if (res.code === 200) {
+                    tips("绉诲簱鎴愬姛")
+                    reset();
+                } else if (res.code === 403) {
+                    top.location.href = baseUrl + "/pda";
+                } else {
+                    tips(res.msg, true)
+                }
+            },
+        });
+    }
+
+    /* 鏍规嵁搴撳尯鍙锋绱㈢墿鏂欎俊鎭� */
+    find = (flag) => {
+        if (flag) {
+            exist('uuid', 'locArea', 'warehouse1');
+        }
+        var warehouse = $("#warehouse1").val();
+        var matnr = $("#matnr").val();
+        // 鏌ヨ鎺ュ彛
+        $.ajax({
+            url: baseUrl + "/locNormal/pda/warehouseQuery?warehouse=" + warehouse + "&matnr=" + matnr,
+            headers: {'token': localStorage.getItem('token')},
+            method: 'GET',
+            async: false,
+            success: function (res) {
+                if (res.code === 200) {
+                    tableIns.reload({
+                        data: res.data,
+                    });
+                } else if (res.code === 403) {
+                    top.location.href = baseUrl + "/pda";
+                } else {
+                    tips(res.msg, true)
+                }
+            },
+        });
+    }
+
+    window.onload = function () {
+        document.getElementById("matnr").focus();
+    }
+
+    function back() {
+        parent.backIndex();
+    }
+
+    /**
+     * 鎻愮ず淇℃伅
+     * @param msg 鎻愮ず鍐呭
+     * @param warn true锛氱孩鑹插瓧浣�
+     */
+    function tips(msg, warn) {
+        layer.msg(msg, {icon: warn ? 2 : 1})
+    }
+
+    function reset() {
+        $('#warehouse1').val("");
+        $('#warehouse2').val("");
+        $('#matnr').val("");
+        layui.form.render('select');
+        tableIns.reload({data: []});
+        layer.closeAll();
+    }
+</script>
+</html>
\ No newline at end of file

--
Gitblit v1.9.1