From af6e1e7da3131b268b035401aeb75a6bab83f312 Mon Sep 17 00:00:00 2001
From: yangle <admin@YINMOU>
Date: 星期五, 12 五月 2023 09:10:12 +0800
Subject: [PATCH] 末道工序入库时,可入库数量得等于出站汇报单数量,要是可入库数量小于汇报数量,则保存汇报单失败,报错提示,匹配生产汇报单数量不足出站数量,不允许入库。 --首道出站单删除的时候判断一下对应的金蝶云生产汇报单是否删除,要是没有删除本地出站单也不允许删除 --末道出站单删除的时候判断一下对应的金蝶云生产入库单是否删除,要是没有删除本地出站单也不允许删除 工序流转卡号改成年+月+四位流水号(23050001) 角色对应权限 设置功能 完善;

---
 WorkM/报表分析/Mes_OrderProcFlowAllReport.cs |   36 ++++++++++++++++++------------------
 1 files changed, 18 insertions(+), 18 deletions(-)

diff --git "a/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs" "b/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs"
index 98e06f8..9ef9d4a 100644
--- "a/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs"
+++ "b/WorkM/\346\212\245\350\241\250\345\210\206\346\236\220/Mes_OrderProcFlowAllReport.cs"
@@ -255,24 +255,24 @@
                 }
             }
 
-            for (int j = HRecProc1Col; j < grdMain.Columns.Count-2; j++)
-            {
-                if (checkBox1.Checked == false)
-                {
-                    if (ClsPub.isStrNull(grdMain.Columns[j].HeaderText).ToUpper().Trim().Contains("涓嶅悎鏍�") == true)
-                    {
-                        grdMain.Columns[j].Visible = false;
-                    }
-                    else
-                    {
-                        grdMain.Columns[j].Visible = true;
-                    }
-                }
-                else
-                {
-                    grdMain.Columns[j].Visible = true;
-                }
-            }
+            //for (int j = HRecProc1Col; j < grdMain.Columns.Count-2; j++)
+            //{
+            //    if (checkBox1.Checked == false)
+            //    {
+            //        if (ClsPub.isStrNull(grdMain.Columns[j].HeaderText).ToUpper().Trim().Contains("涓嶅悎鏍�") == true)
+            //        {
+            //            grdMain.Columns[j].Visible = false;
+            //        }
+            //        else
+            //        {
+            //            grdMain.Columns[j].Visible = true;
+            //        }
+            //    }
+            //    else
+            //    {
+            //        grdMain.Columns[j].Visible = true;
+            //    }
+            //}
             //
         }
 

--
Gitblit v1.9.1