From 064ef1fd2858c6185bd1b7d1e986fc08c7abd8aa Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期四, 11 三月 2021 15:50:10 +0800
Subject: [PATCH] #

---
 src/main/webapp/static/js/ioWorks/matQuery.js |   52 ++++++++++++++++++++++++----------------------------
 1 files changed, 24 insertions(+), 28 deletions(-)

diff --git a/src/main/webapp/static/js/ioWorks/matQuery.js b/src/main/webapp/static/js/ioWorks/matQuery.js
index 0a22b7c..e0703ac 100644
--- a/src/main/webapp/static/js/ioWorks/matQuery.js
+++ b/src/main/webapp/static/js/ioWorks/matQuery.js
@@ -43,7 +43,6 @@
                 if (data.length === 0){
                     layer.msg('璇锋坊鍔犵墿鏂�');
                 } else {
-
                     layer.open({
                         type: 1,
                         title: '瀹氫箟閿�鍞崟缂栧彿',
@@ -58,32 +57,6 @@
                             $('#orderNo').val('');
                         }
                     });
-
-
-                    // var matDetls = [];
-                    // data.forEach(function(elem) {
-                    //     matDetls.push({matnr: elem.matnr, count: elem.count});
-                    // });
-                    // $.ajax({
-                    //     url: baseUrl+"/work/pakout/init",
-                    //     headers: {'token': localStorage.getItem('token')},
-                    //     data: JSON.stringify(matDetls),
-                    //     contentType:'application/json;charset=UTF-8',
-                    //     method: 'POST',
-                    //     success: function (res) {
-                    //         if (res.code === 200){
-                    //             matData = [];
-                    //             tableIns.reload({data: matData,done:function (res) {
-                    //                 limit();
-                    //             }});
-                    //             layer.msg(res.msg, {icon: 1});
-                    //         } else if (res.code === 403){
-                    //             top.location.href = baseUrl+"/";
-                    //         } else {
-                    //             layer.msg(res.msg)
-                    //         }
-                    //     }
-                    // });
                 }
                 break;
         }
@@ -108,8 +81,31 @@
 
     // 寮�濮嬬敓鎴愭嫞璐у崟
     form.on('submit(confirm)', function (data) {
+        var matDetls = [];
+        matData.forEach(function(elem) {
+            matDetls.push({matnr: elem.matnr, count: elem.count});
+        });
+        $.ajax({
+            url: baseUrl+"/work/order/init",
+            headers: {'token': localStorage.getItem('token')},
+            data: JSON.stringify({
+                number: data.field.orderNo,
+                list: matDetls
+            }),
+            contentType:'application/json;charset=UTF-8',
+            method: 'POST',
+            success: function (res) {
+                if (res.code === 200){
+                    top.layui.layer.close(top.popupRight);
+                    layer.msg(res.msg, {icon: 1});
+                } else if (res.code === 403){
+                    top.location.href = baseUrl+"/";
+                } else {
+                    layer.msg(res.msg, {icon: 2})
+                }
+            }
+        });
 
-        top.layui.layer.close(top.popupRight);
     })
 
     function updateMatData(locNo, matnr, count) {

--
Gitblit v1.9.1