From ea43c7b135fb7e38278737c43b58063a9d02a2ab Mon Sep 17 00:00:00 2001
From: llj <132905093+newwwwwwtree@users.noreply.github.com>
Date: 星期三, 20 八月 2025 08:50:41 +0800
Subject: [PATCH] 不良top3问题报表添加部门查询维度,部门以下拉框的形式加载出来,放在月份过滤字段旁边。生产质量汇报单表头上有部门信息
---
LMES/ClsShowMod.cs | 26 ++++++++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
diff --git a/LMES/ClsShowMod.cs b/LMES/ClsShowMod.cs
index d8797f5..e35fc20 100644
--- a/LMES/ClsShowMod.cs
+++ b/LMES/ClsShowMod.cs
@@ -3640,6 +3640,18 @@
oGy_BarCodeBill_New.BillStatus = Pub_Class.ClsPub.Enum_BillStatus.BillStatus_AddNew;
oGy_BarCodeBill_New.ShowDialog();
break;
+ case "gy_barcodebill_rework":
+ //
+ Gy_BarCodeBill_Rework oGy_BarCodeBill_Rework = new Gy_BarCodeBill_Rework();
+ oGy_BarCodeBill_Rework.BillStatus = Pub_Class.ClsPub.Enum_BillStatus.BillStatus_AddNew;
+ oGy_BarCodeBill_Rework.ShowDialog();
+ break;
+ case "gy_barcodebill_xiabao":
+ //
+ Gy_BarCodeBill_XiaBao oGy_BarCodeBill_XiaBao = new Gy_BarCodeBill_XiaBao();
+ oGy_BarCodeBill_XiaBao.BillStatus = Pub_Class.ClsPub.Enum_BillStatus.BillStatus_AddNew;
+ oGy_BarCodeBill_XiaBao.ShowDialog();
+ break;
case "gy_cusbarcodebilllist":
//权限
Gy_CusBarCodeBillList oGy_CusBarCodeBillList = new Gy_CusBarCodeBillList();
@@ -3658,6 +3670,13 @@
Gy_CusBarCodeBill_KaiBei_LangChao oGy_CusBarCodeBill_KaiBei_LangChao = new Gy_CusBarCodeBill_KaiBei_LangChao();
oGy_CusBarCodeBill_KaiBei_LangChao.BillStatus = Pub_Class.ClsPub.Enum_BillStatus.BillStatus_AddNew;
oGy_CusBarCodeBill_KaiBei_LangChao.ShowDialog();
+ break;
+ case "gy_datain_updatebarcodestatus":
+ //
+ Gy_DataIn_UpDateBarCodeStatus oGy_DataIn_UpDateBarCodeStatus = new Gy_DataIn_UpDateBarCodeStatus();
+ oGy_DataIn_UpDateBarCodeStatus.MdiParent = oMain;
+ oGy_DataIn_UpDateBarCodeStatus.Show();
+ oMainForm.AddTabPage(oGy_DataIn_UpDateBarCodeStatus);
break;
case "sc_icmotobarcode":
//
@@ -4044,6 +4063,13 @@
oGy_PackBarCodeBill_automaticallyByPLC.Show();
oMainForm.AddTabPage(oGy_PackBarCodeBill_automaticallyByPLC);
break;
+ case "gy_barcodebill_automaticallybyplc_new_change":
+ //权限
+ Gy_BarCodeBill_automaticallyByPLC_New_Change oGy_BarCodeBill_automaticallyByPLC_New_Change = new Gy_BarCodeBill_automaticallyByPLC_New_Change();
+ oGy_BarCodeBill_automaticallyByPLC_New_Change.MdiParent = oMain;
+ oGy_BarCodeBill_automaticallyByPLC_New_Change.Show();
+ oMainForm.AddTabPage(oGy_BarCodeBill_automaticallyByPLC_New_Change);
+ break;
default:
break;
}
--
Gitblit v1.9.1