From b7923cc03402e74f2496ab4e13ffaa7eb49ad3bd Mon Sep 17 00:00:00 2001
From: zrg <z18737863051@163.com>
Date: 星期一, 23 九月 2024 09:36:53 +0800
Subject: [PATCH] 1.模具保养规程表头 增加 HErrWarQtys int --预警次数 2,模具保养计划单 主表 增加 HErrWarQtys int --预警次数 3.模具保养计划单 计划子表 增加 HSendFlag bit //是否发送信息 (发送钉钉) HErrBeginQty int --预警开始次数 HUseNowQty ?int --当前使用次数 HUseEndQty ?int --结束使用次数 4.模具计划单,点击审核 生成模具保养计划 5.模具保养记录 点击审核 根据钉钉同步的累加模次 进行计算下次点检记录 6.异常反馈增加工作中心字段

---
 WebTM/views/PublicPage/PowerInformation.html |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/WebTM/views/PublicPage/PowerInformation.html b/WebTM/views/PublicPage/PowerInformation.html
index 58bfdef..67f2c70 100644
--- a/WebTM/views/PublicPage/PowerInformation.html
+++ b/WebTM/views/PublicPage/PowerInformation.html
@@ -259,7 +259,7 @@
                     return false;
                 }
                 var sSubStr = JSON.stringify(table.cache['mainTable']);
-                var sMainSub = TagId + ';' + sSubStr + ';' + linterid;
+                var sMainSub = TagId + ';' + sSubStr + ';' + linterid + ";" + HSouceBillType;
                 //console.log(sMainSub);
                 //return false;
                 $.ajax(
@@ -272,7 +272,7 @@
                         success: function (data) {
                             if (data.count == 1) { // 璇存槑楠岃瘉鎴愬姛浜嗭紝
                                 layer.msg(data.Message, { time: 1 * 1000, icon: 1 }, function () {
-                                    $('#add-btn').addClass("layui-btn-disabled").attr("disabled", true);
+                                    //$('#add-btn').addClass("layui-btn-disabled").attr("disabled", true);
                                     get_Display(sGnbm);
                                 });
                             }
@@ -295,7 +295,7 @@
                 $.ajax({
                     url: GetWEBURL() + '/PublicPageMethod/PowerList',
                     type: "GET",
-                    data: { "czybm": linterid, "sGnbm": sGnbm },
+                    data: { "czybm": linterid, "sGnbm": sGnbm, "HSouceBillType": HSouceBillType},
                     success: function (data1) {
                         if (data1.count == 1) {
                             option.data = data1.data;
@@ -346,10 +346,9 @@
                 } else {
                     treeData.push(it)
                 }
-            })
+            })                      
             return treeData;
-        }
-
+        }      
     </script>
 
 </body>

--
Gitblit v1.9.1