From cb2fc709d4e2aec6bbea3e6f4e8ccc24f3d27756 Mon Sep 17 00:00:00 2001
From: wtt <1985833171@qq.com>
Date: 星期日, 06 十月 2024 17:27:08 +0800
Subject: [PATCH] 工艺路线工价

---
 WebTM/views/领料发货/领料出库/Kf_MateOutBill_FastList.html |  128 +++++++++++++++++++++++++-----------------
 1 files changed, 76 insertions(+), 52 deletions(-)

diff --git "a/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\351\242\206\346\226\231\345\207\272\345\272\223/Kf_MateOutBill_FastList.html" "b/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\351\242\206\346\226\231\345\207\272\345\272\223/Kf_MateOutBill_FastList.html"
index fa52d1d..2f3d879 100644
--- "a/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\351\242\206\346\226\231\345\207\272\345\272\223/Kf_MateOutBill_FastList.html"
+++ "b/WebTM/views/\351\242\206\346\226\231\345\217\221\350\264\247/\351\242\206\346\226\231\345\207\272\345\272\223/Kf_MateOutBill_FastList.html"
@@ -2,7 +2,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
-    <title>棰嗘枡鍑哄簱鍗曠紦瀛樺垪琛�</title>
+    <title>鐢熶骇棰嗘枡缂撳瓨鍒楄〃</title>
     <meta name="renderer" content="webkit">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
@@ -120,7 +120,8 @@
         , layer = layui.layer
         , table = layui.table
         , form = layui.form
-        , element = layui.element;
+            , element = layui.element;
+        var option = {};
         //娓呯┖鐣岄潰  new
 
 
@@ -133,52 +134,70 @@
         //
          //閫�鍑�
         form.on('submit(cmdCancel)', function () {
-            parent.location.href = "../../../views/index.html"
+            layer.confirm('鎮ㄧ‘瀹氳閫�鍑哄悧锛�', { icon: 3, title: '鎻愮ず' }, function (index) {
+                parent.location.href = "../../../views/index.html";
+            }); 
             //window.close();//鍏抽棴褰撳墠椤�
         })
-         //缂栬緫
+        //缂栬緫
         form.on('submit(cmdModify)', function () {
             var checkStatus = table.checkStatus('dj-table')
-                     , data = checkStatus.data;
-            //ajaxLabelData = data;
-            //layer.alert(rows);
-            layer.open({
-                type: 2
-                , area: ['100%', '100%']
-                , title: '棰嗘枡鍗�'
-                , shade: 0.6 //閬僵閫忔槑搴�
-                , maxmin: false //鍏佽鍏ㄥ睆鏈�灏忓寲
-                , anim: 0 //0-6鐨勫姩鐢诲舰寮忥紝-1涓嶅紑鍚�
-                , content: ['../../棰嗘枡鍙戣揣/棰嗘枡鍑哄簱/Kf_MateOutBill_Fast.html?linterid=' + data[0].HInterID, 'yes']
-                , resize: false
-                , cancel: function () {
-                    $(".layui-btn").removeClass("layui-btn-disabled");
+                , data = checkStatus.data;
+            $.ajax({
+                type: "GET",
+                url: GetWEBURL() + "/WEBSController/TempList_Modify_Json",
+                async: false,    //async鐢ㄤ簬鎺у埗锛坒alse锛夊悓姝ュ拰锛坱rue锛夊紓姝ワ紝榛樿鐨勬槸true锛屽嵆璇锋眰榛樿鐨勬槸寮傛璇锋眰
+                data: { "HInterID": data[0].HInterID, "HBillNo": data[0].HBillNo, "HBillType": sBillType },
+                success: function (result) {
+                    if (result.count == 1) { // 璇存槑楠岃瘉鎴愬姛浜嗭紝
+                        layer.open({
+                            type: 2
+                            , area: ['100%', '100%']
+                            , title: '棰嗘枡鍑哄簱鍗�'
+                            , shade: 0.6 //閬僵閫忔槑搴�
+                            , maxmin: false //鍏佽鍏ㄥ睆鏈�灏忓寲
+                            , anim: 0 //0-6鐨勫姩鐢诲舰寮忥紝-1涓嶅紑鍚�
+                            , content: ['../../棰嗘枡鍙戣揣/棰嗘枡鍑哄簱/Kf_MateOutBill_Fast.html?OperationType=2&HInterID=' + data[0].HInterID, 'yes']
+                            , resize: false
+                            , cancel: function () {
+                                $(".layui-btn").removeClass("layui-btn-disabled");
+                            }
+                        })
+                    }
+                    else {
+                        layer.msg(result.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: "娓╅Θ鎻愮ず" });
                 }
-            })
+            });
         });
+        // //缂栬緫
+        //form.on('submit(cmdModify)', function () {
+        //    var checkStatus = table.checkStatus('dj-table')
+        //             , data = checkStatus.data;
+        //    //ajaxLabelData = data;
+        //    //layer.alert(rows);
+        //    layer.open({
+        //        type: 2
+        //        , area: ['100%', '100%']
+        //        , title: '棰嗘枡鍗�'
+        //        , shade: 0.6 //閬僵閫忔槑搴�
+        //        , maxmin: false //鍏佽鍏ㄥ睆鏈�灏忓寲
+        //        , anim: 0 //0-6鐨勫姩鐢诲舰寮忥紝-1涓嶅紑鍚�
+        //        , content: ['../../棰嗘枡鍙戣揣/棰嗘枡鍑哄簱/Kf_MateOutBill_Fast.html?linterid=' + data[0].HInterID, 'yes']
+        //        , resize: false
+        //        , cancel: function () {
+        //            $(".layui-btn").removeClass("layui-btn-disabled");
+        //        }
+        //    })
+        //});
         //鍒锋柊
         form.on('submit(cmdRefresh)', function () {
-            table.render({
-                elem: '#dj-table'
-                , url: GetWEBURL() + '/Web/chanpinruk'
-                , toolbar: '#toolbarDemo'
-                , where: { HBillType: sBillType, sHMaker: sessionStorage["HUserName"], HOrgID: sessionStorage["OrganizationID"] }
-                , cols: [[
-                    { type: 'radio' }
-                    , { field: 'HInterID', title: '鍗曟嵁鍐呯爜', width: 120 }
-                    , { field: 'HBillNo', title: '鍗曟嵁鍙�', width: 150 }
-                    , { field: 'HMaker', title: '鍒跺崟浜�', width: 120 }
-                    , { field: 'HMakeDate', title: '鍒跺崟鏃ユ湡', width: 150 }
-                    , { field: 'HQty', title: '鏁伴噺', width: 100 }
-                    , { field: 'HSourceBillNo', title: '婧愬崟鍗曞彿', width: 150 }
-                    , { field: 'HRedBlueFlag', title: '绾㈣摑瀛�', width: 120 }
-                    , { field: 'HSourceBillType', title: '婧愬崟绫诲瀷', width: 100 }
-                ]]
-                , height: 500
-                , done: function () {
-                    layer.closeAll("loading");
-                }
-            }),
+            //鍔ㄦ�佸垪-鍒锋柊缂撳瓨鍒楄〃
+            table.render(option),
+                //鍒锋柊宸蹭笂浼犲垪琛�
                 table.render({
                     elem: '#yd-table'
                     , url: GetWEBURL() + '/Web/DisBillUpdateLoad_Json'
@@ -235,16 +254,19 @@
         form.on('submit(cmdRescind)', function () {
             var checkStatus = table.checkStatus('yd-table');
             var checkStatus2 = table.checkStatus('sy-table');
+            var checkStatus3 = table.checkStatus('dj-table');
             var data = "";
             if (checkStatus.data.length != 0) {
                 data = checkStatus.data;
             } else if (checkStatus2.data.length != 0) {
                 data = checkStatus2.data;
-            } else {
+            } else if (checkStatus3.data.length != 0) {
+                data = checkStatus3.data;
+            }  else {
                 return layer.msg("璇烽�夋嫨涓�鏉℃暟鎹�");
             }
-            var sInterID = data[0].HInterID
-            var sBillNo = data[0].HBillNo
+            var sInterID = data[0].HInterID == 'undefined' ? data[0].鍗曟嵁鍐呯爜 : data[0].HInterID;
+            var sBillNo = data[0].HBillNo == 'undefined' ? data[0].鍗曟嵁鍙� : data[0].HBillNo;
             var sBillType = '1204'
             $.ajax(
                 {
@@ -285,7 +307,7 @@
             var checkStatus = table.checkStatus('dj-table')
                 , data = checkStatus.data;
             if (checkStatus.data.length === 1) {
-                var sInterID = data[0].HInterID;
+                var sInterID = data[0].HInterID == 'undefined' ? data[0].鍗曟嵁鍐呯爜 : data[0].HInterID;
                 //閫昏緫鍒犻櫎鏂规硶
                 layer.confirm("纭瑕佸垹闄ゅ悧锛屽垹闄ゅ悗涓嶈兘鎭㈠", { title: "鍒犻櫎纭" }, function (index) {
                     $.ajax(
@@ -334,14 +356,14 @@
             , where: { HBillType: sBillType, sHMaker: sessionStorage["HUserName"], HOrgID: sessionStorage["OrganizationID"] }
             , cols: [[
                 { type: 'radio' }
-                , { field: 'HInterID', title: '鍗曟嵁鍐呯爜', width: 120 }
-                , { field: 'HBillNo', title: '鍗曟嵁鍙�', width: 150 }
-                , { field: 'HMaker', title: '鍒跺崟浜�', width: 120 }
-                , { field: 'HMakeDate', title: '鍒跺崟鏃ユ湡', width: 150 }
-                , { field: 'HQty', title: '鏁伴噺', width: 100 }
-                , { field: 'HSourceBillNo', title: '婧愬崟鍗曞彿', width: 150 }
-                , { field: 'HRedBlueFlag', title: '绾㈣摑瀛�', width: 120 }
-                , { field: 'HSourceBillType', title: '婧愬崟绫诲瀷', width: 100 }
+                , { field: '鍗曟嵁鍐呯爜', title: '鍗曟嵁鍐呯爜', width: 120 }
+                , { field: '鍗曟嵁鍙�', title: '鍗曟嵁鍙�', width: 150 }
+                , { field: '鍒跺崟浜�', title: '鍒跺崟浜�', width: 120 }
+                , { field: '鍒跺崟鏃ユ湡', title: '鍒跺崟鏃ユ湡', width: 150 }
+                , { field: '鏁伴噺', title: '鏁伴噺', width: 100 }
+                , { field: '婧愬崟鍗曞彿', title: '婧愬崟鍗曞彿', width: 150 }
+                , { field: '绾㈣摑瀛�', title: '绾㈣摑瀛�', width: 120 }
+                , { field: '婧愬崟绫诲瀷', title: '婧愬崟绫诲瀷', width: 100 }
             ]]
             , height: 500
             , done: function () {
@@ -349,6 +371,8 @@
             }
         })
 
+
+
         //宸蹭笂浼犲垪琛�
         table.render({
             elem: '#yd-table'

--
Gitblit v1.9.1