From 92cffc135581ce2cf4aecac745ddb88e739c17de Mon Sep 17 00:00:00 2001
From: 懒羊羊 <15939171744@163.com>
Date: 星期二, 17 十月 2023 15:34:57 +0800
Subject: [PATCH] 工单修改

---
 guns-vip-main/src/main/webapp/assets/modular/kb/formula/formulaView.js |   66 +++++++++++++++++++++++++++++---
 1 files changed, 59 insertions(+), 7 deletions(-)

diff --git a/guns-vip-main/src/main/webapp/assets/modular/kb/formula/formulaView.js b/guns-vip-main/src/main/webapp/assets/modular/kb/formula/formulaView.js
index 7f6c962..ea5d056 100644
--- a/guns-vip-main/src/main/webapp/assets/modular/kb/formula/formulaView.js
+++ b/guns-vip-main/src/main/webapp/assets/modular/kb/formula/formulaView.js
@@ -53,7 +53,8 @@
         url: Feng.ctxPath + '/formulaChildInfo/list',
         page: false,
         // height: "full-158",
-        height: 460,
+        // height: 460,
+        height: 400,
         cellMinWidth: 100,
         where: queryData,
         cols: FormulaChildInfo.initColumn(),
@@ -132,12 +133,13 @@
         }
     });
 
-    setInterval(function() {
-        $('input[name="sex1"][value="nan1"]').prop('checked', true);
-    }, 1000);
-    setInterval(function() {
-        radioElement.prop('checked', false);
-    }, 2000);
+    // //redio闂儊
+    // setInterval(function() {
+    //     $('input[name="sex1"][value="nan1"]').prop('checked', true);
+    // }, 1000);
+    // setInterval(function() {
+    //     radioElement.prop('checked', false);
+    // }, 2000);
 
     //Hash鍦板潃鐨勫畾浣�
     var layid = location.hash.replace(/^#test=/, '');
@@ -147,4 +149,54 @@
         location.hash = 'test='+ $(this).attr('lay-id');
     });
 
+    /**
+     * 鍩虹BOM绠$悊
+     */
+    var ProductBomChildInfo = {
+        tableId: "productBomChildInfoTable"
+    };
+
+    /**
+     * 鍒濆鍖栬〃鏍肩殑鍒�
+     */
+    ProductBomChildInfo.initColumn = function () {
+        return [[
+            {field: 'id', hide: true, title: '涓婚敭id'},
+            {field: 'opCode', sort: true, title: '宸ュ簭缂栫爜'},
+            {field: 'opName', sort: true, title: '宸ュ簭鍚嶇О'},
+            {field: 'materialCode', sort: true, title: '鐗╂枡缂栫爜'},
+            {field: 'costQty', sort: true, title: '鍗曡��'},
+            {field: 'bomCode', sort: true, title: 'BOM缂栫爜'},
+        ]];
+    };
+
+    var queryData = {};
+    queryData['bomCode'] = "301002000021";
+    // 娓叉煋琛ㄦ牸
+    table.render({
+        elem: '#' + ProductBomChildInfo.tableId,
+        url: Feng.ctxPath + '/productBomChildInfo/list',
+        page: true,
+        height: 460,
+        cellMinWidth: 100,
+        where: queryData,
+        cols: ProductBomChildInfo.initColumn()
+    });
+
+    $("#scanCode").keydown(function(event) {
+        if (event.keyCode === 13) {
+            // 鎵ц鎮ㄦ兂瑕佺殑浠g爜
+            var ajax = new $ax(Feng.ctxPath + "/kb/formulaView/addFormulaState?formulaCode="+msg.recipeCode);
+            var result = ajax.start();
+            table.reload("formulaChildInfoTable")
+            return false; // 闃绘榛樿琛屼负
+        }
+    });
+
+    $("#clear").click(function() {
+        var ajax = new $ax(Feng.ctxPath + "/kb/formulaView/clear?formulaCode="+msg.recipeCode);
+        var result = ajax.start();
+        table.reload("formulaChildInfoTable")
+    });
+
 });

--
Gitblit v1.9.3