From d64724c092e9aa860c888d3e4106d41a8dfe99e8 Mon Sep 17 00:00:00 2001
From: zzr99 <1940172413@qq.com>
Date: 星期三, 30 三月 2022 17:30:53 +0800
Subject: [PATCH] PDA加删除提示+器具档案批量生成

---
 WebTM/views/公共页面/Kf_BarCodeEditDlg.html |  148 ++++++++++++++++++++++++-------------------------
 1 files changed, 73 insertions(+), 75 deletions(-)

diff --git "a/WebTM/views/\345\205\254\345\205\261\351\241\265\351\235\242/Kf_BarCodeEditDlg.html" "b/WebTM/views/\345\205\254\345\205\261\351\241\265\351\235\242/Kf_BarCodeEditDlg.html"
index 4bdb342..96c0366 100644
--- "a/WebTM/views/\345\205\254\345\205\261\351\241\265\351\235\242/Kf_BarCodeEditDlg.html"
+++ "b/WebTM/views/\345\205\254\345\205\261\351\241\265\351\235\242/Kf_BarCodeEditDlg.html"
@@ -102,7 +102,7 @@
             return vars;
         }
         //鑾峰彇椤甸潰璺宠浆鍙傛暟
-        var params = get_UrlVars();
+        var params = getUrlVars();
         if (typeof (params[params[0]]) == "undefined") {
             var OperationType = 1;//鎿嶄綔绫诲瀷
         } else {
@@ -139,7 +139,7 @@
                  ,url: GetWEBURL() + "/Web/GetHBarCodeShowBillSub"
                 , where: {
                     "HInterID": HInterID, "HMaterID": HMaterID, "HAuxPropID": HAuxPropID, "HMTONo": HMTONo, "HWhID": HWhID, "HSPID": HSPID, "HSCWHID": HSCWHID
-                    , "HSCSPID": HSCSPID, "HBatchNo": HBatchNo, "HSourceInterID": HSourceInterID, "HSourceEntryID": HSourceEntryID, "HBillType": HBillType
+                    , "HSCSPID": HSCSPID, "HBatchNo": HBatchNo, "HSourceInterID": HSourceInterID, "HSourceEntryID": HSourceEntryID, "HBillType": HBillType,sWhere: ''
                 },
              cols: [[
              { type: 'radio' }
@@ -154,7 +154,7 @@
 
 
             //#region 鍒犻櫎
-            function set_DeleteBill() {
+            form.on('submit(cmdDel)', function () {
                 var checkStatus = table.checkStatus('mx-table')
                     , data = checkStatus.data;
                 if (checkStatus.data.length === 1) {
@@ -188,81 +188,79 @@
                 else {
                     layer.msg('璇烽�夋嫨涓�琛屾暟鎹垹闄わ紒');
                 }
-            }
-
-
-            //缂栬緫
-            form.on('submit(cmdChange)', function () {//缂栬緫
-                var checkStatus = table.checkStatus('mx-table')
-                    , data = checkStatus.data;
-                var sQty = data[0].HQty.toString();
-                var iQty = $('#HQty').val()
-                    $.ajax(
-                        {
-                            type: "Get",
-                            //url: "http://61.130.49.162:9090/WMSAPI///ProductIn/Delete_Json", //鏂规硶鎵�鍦ㄩ〉闈㈠拰鏂规硶鍚�
-                            url: GetWEBURL() + "/Kf_BarCodeEditDlg/GetCheckQtyByBarCodeBill",
-                            async: true,
-                            data: {
-                                "HInterID": HInterID, "HBillType": HBillType, "sBatchNo": HBatchNo, "sBarCode": HBarCode, "sSCWhID": HSCWHID
-                                , "sSCSPID": HSCSPID, "sAuxPropID": HAuxPropID, "sMTONo": HMTONo, "iQty": iQty
-                                , "HMaterID": HMaterID, "sWhID": HWhID, "sSPID": HSPID, "HSourceInterID": HSourceInterID
-                                , "HSourceEntryID": HSourceEntryID, "EndQty": EndQty, "sQty": sQty
-                            },
-                            dataType: "json",
-                            success: function (data) {
-                                if (data.count == 1) { // 璇存槑楠岃瘉鎴愬姛浜�
-                                    table.render({
-                                        elem: '#mx-table'
-                                        //, url: 'http://localhost:8083/Web/GetHBarCodeShowBillSub'
-                                        , url: GetWEBURL() + "/Web/GetHBarCodeShowBillSub"
-                                        , where: {
-                                            "HInterID": HInterID, "HMaterID": HMaterID, "HAuxPropID": HAuxPropID, "HMTONo": HMTONo, "HWhID": HWhID, "HSPID": HSPID, "HSCWHID": HSCWHID
-                                            , "HSCSPID": HSCSPID, "HBatchNo": HBatchNo, "HSourceInterID": HSourceInterID, "HSourceEntryID": HSourceEntryID, "HBillType": HBillType
-                                        },
-                                        cols: [[
-                                            { type: 'radio' }
-                                            , { field: 'HSonNo', title: '搴忓彿', width: 100 }
-                                            , { field: 'HBarCode', title: '鏉″舰鐮�', width: 200 }
-                                            , { field: 'HQty', title: '鏁伴噺', width: 100 }
-                                            , { field: 'HBatchNo', title: '鎵规', width: 150 }
-                                            , { field: 'HMTONo', title: '璁″垝璺熻釜鍗曞彿', width: 150 }
-                                        ]]
-                                        // , data: [linterid]
-                                    });
-                                    alert("缂栬緫鎴愬姛锛�");
-                                }
-                                else {
-                                    layer.msg(data.Message, { icon: 5, btn: ['纭'], time: 100000, offset: 't', skin: 'layui-layer-lan', title: "娓╅Θ鎻愮ず" });
-                                }
-                            },
-                            error: function (err) {
-                                layer.msg('閿欒' + err, { icon: 5, btn: ['纭'], time: 100000, offset: 't', skin: 'layui-layer-lan', title: "娓╅Θ鎻愮ず" });
-                            }
-                        });
-                }
-
-                    layer.open({
-                        type: 2
-                        , area: ['100%', '100%']
-                        , title: '鏄庣粏鍒楄〃'
-                        , shade: 0.6 //閬僵閫忔槑搴�
-                        , maxmin: true //鍏佽鍏ㄥ睆鏈�灏忓寲
-                        , anim: 0 //0-6鐨勫姩鐢诲舰寮忥紝-1涓嶅紑鍚�
-                        , content: ['../../../views/鍏叡椤甸潰/Kf_BarCodeEditDlg.html?HInterID=' + HInterID + '&HMaterID = ' + HMaterID + '&HAuxPropID = ' + HAuxPropID + '& HMTONo = ' + HMTONo + '&HWhID = ' + HWhID + '&HSPID = ' + HSPID + '&HSCWHID = ' + HSCWHID + '&HSCSPID= ' + HSCSPID + '&HBatchNo= ' + HBatchNo + '&HSourceInterID= ' + HSourceInterID + '&HSourceEntryID= ' + HSourceEntryID + '&HBillType=  ' + HBillType + '&HBarCode=  ' + HBarCode + ''
-                            , 'yes']
-                        , resize: false
-                        , cancel: function () {
-                            //$(".layui-btn").removeClass("layui-btn-disabled");
-                        }
-                    })
-                } else {
-                    layer.msg('璇烽�夋嫨涓�琛屾暟鎹紪杈戯紒');
-                }
             })
 
 
-    });
+            //缂栬緫
+            //form.on('submit(cmdChange)', function () {//缂栬緫
+            //    var checkStatus = table.checkStatus('mx-table')
+            //        , data = checkStatus.data;
+            //    var sQty = data[0].HQty.toString();
+            //    var iQty = $('#HQty').val()
+            //        $.ajax(
+            //            {
+            //                type: "Get",
+            //                //url: "http://61.130.49.162:9090/WMSAPI///ProductIn/Delete_Json", //鏂规硶鎵�鍦ㄩ〉闈㈠拰鏂规硶鍚�
+            //                url: GetWEBURL() + "/Kf_BarCodeEditDlg/GetCheckQtyByBarCodeBill",
+            //                async: true,
+            //                data: {
+            //                    "HInterID": HInterID, "HBillType": HBillType, "sBatchNo": HBatchNo, "sBarCode": HBarCode, "sSCWhID": HSCWHID
+            //                    , "sSCSPID": HSCSPID, "sAuxPropID": HAuxPropID, "sMTONo": HMTONo, "iQty": iQty
+            //                    , "HMaterID": HMaterID, "sWhID": HWhID, "sSPID": HSPID, "HSourceInterID": HSourceInterID
+            //                    , "HSourceEntryID": HSourceEntryID, "EndQty": EndQty, "sQty": sQty
+            //                },
+            //                dataType: "json",
+            //                success: function (data) {
+            //                    if (data.count == 1) { // 璇存槑楠岃瘉鎴愬姛浜�
+            //                        table.render({
+            //                            elem: '#mx-table'
+            //                            //, url: 'http://localhost:8083/Web/GetHBarCodeShowBillSub'
+            //                            , url: GetWEBURL() + "/Web/GetHBarCodeShowBillSub"
+            //                            , where: {
+            //                                "HInterID": HInterID, "HMaterID": HMaterID, "HAuxPropID": HAuxPropID, "HMTONo": HMTONo, "HWhID": HWhID, "HSPID": HSPID, "HSCWHID": HSCWHID
+            //                                , "HSCSPID": HSCSPID, "HBatchNo": HBatchNo, "HSourceInterID": HSourceInterID, "HSourceEntryID": HSourceEntryID, "HBillType": HBillType
+            //                            },
+            //                            cols: [[
+            //                                { type: 'radio' }
+            //                                , { field: 'HSonNo', title: '搴忓彿', width: 100 }
+            //                                , { field: 'HBarCode', title: '鏉″舰鐮�', width: 200 }
+            //                                , { field: 'HQty', title: '鏁伴噺', width: 100 }
+            //                                , { field: 'HBatchNo', title: '鎵规', width: 150 }
+            //                                , { field: 'HMTONo', title: '璁″垝璺熻釜鍗曞彿', width: 150 }
+            //                            ]]
+            //                            // , data: [linterid]
+            //                        });
+            //                        alert("缂栬緫鎴愬姛锛�");
+            //                    }
+            //                    else {
+            //                        layer.msg(data.Message, { icon: 5, btn: ['纭'], time: 100000, offset: 't', skin: 'layui-layer-lan', title: "娓╅Θ鎻愮ず" });
+            //                    }
+            //                },
+            //                error: function (err) {
+            //                    layer.msg('閿欒' + err, { icon: 5, btn: ['纭'], time: 100000, offset: 't', skin: 'layui-layer-lan', title: "娓╅Θ鎻愮ず" });
+            //                }
+            //            });
+
+            //        layer.open({
+            //            type: 2
+            //            , area: ['100%', '100%']
+            //            , title: '鏄庣粏鍒楄〃'
+            //            , shade: 0.6 //閬僵閫忔槑搴�
+            //            , maxmin: true //鍏佽鍏ㄥ睆鏈�灏忓寲
+            //            , anim: 0 //0-6鐨勫姩鐢诲舰寮忥紝-1涓嶅紑鍚�
+            //            , content: ['../../../views/鍏叡椤甸潰/Kf_BarCodeEditDlg.html?HInterID=' + HInterID + '&HMaterID = ' + HMaterID + '&HAuxPropID = ' + HAuxPropID + '& HMTONo = ' + HMTONo + '&HWhID = ' + HWhID + '&HSPID = ' + HSPID + '&HSCWHID = ' + HSCWHID + '&HSCSPID= ' + HSCSPID + '&HBatchNo= ' + HBatchNo + '&HSourceInterID= ' + HSourceInterID + '&HSourceEntryID= ' + HSourceEntryID + '&HBillType=  ' + HBillType + '&HBarCode=  ' + HBarCode + ''
+            //                , 'yes']
+            //            , resize: false
+            //            , cancel: function () {
+            //                //$(".layui-btn").removeClass("layui-btn-disabled");
+            //            }
+            //        })
+            //    } else {
+            //        layer.msg('璇烽�夋嫨涓�琛屾暟鎹紪杈戯紒');
+            //    }
+            })
+
+
     </script>
 </body>
 </html>

--
Gitblit v1.9.1