From 28e1721d265cb676ad65030cc7967066fa324760 Mon Sep 17 00:00:00 2001
From: yxj <1qaz@123>
Date: 星期四, 04 十一月 2021 15:14:39 +0800
Subject: [PATCH] 出站汇报单模块界面新增报废品质确认按钮;新增工序隔离品报表、工序报废品报表

---
 LMES/ClsShowMod.cs |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/LMES/ClsShowMod.cs b/LMES/ClsShowMod.cs
index 21249ef..8bb07b8 100644
--- a/LMES/ClsShowMod.cs
+++ b/LMES/ClsShowMod.cs
@@ -35,6 +35,7 @@
             if (!DBUtility.ClsPub.Security_Log(gnsy.Trim(), 1, true, DBUtility.ClsPub.CurUserName))
             {
                 return;
+
             }
             //
             switch (gnbm.Trim().Substring(0, 2))
@@ -49,6 +50,7 @@
                     break;
                 case "pa":
                     //工资管理
+
                     Zxxymk_GZXT(gnsy, gnmc, oMain);
                     break;
                 case "jh":
@@ -5187,6 +5189,41 @@
             {
                 switch (gnsy.ToLower())
                 {
+                    case "mes_stationoutbilllist_baofei":
+                        MES_StationOutBillList_BaoFei oMES_StationOutBillList_BaoFei = new MES_StationOutBillList_BaoFei();
+                        oMES_StationOutBillList_BaoFei.MdiParent = oMain;
+                        oMES_StationOutBillList_BaoFei.ModCaption = gnmc;
+                        oMES_StationOutBillList_BaoFei.Show();
+                        oMainForm.AddTabPage(oMES_StationOutBillList_BaoFei);
+                        break;
+                    case "mes_stationoutbilllist_geli":
+                        MES_StationOutBillList_GeLi oMES_StationOutBillList_GeLi = new MES_StationOutBillList_GeLi();
+                        oMES_StationOutBillList_GeLi.MdiParent = oMain;
+                        oMES_StationOutBillList_GeLi.ModCaption = gnmc;
+                        oMES_StationOutBillList_GeLi.Show();
+                        oMainForm.AddTabPage(oMES_StationOutBillList_GeLi);
+                        break;
+                    case "mes_stationoutbilllist_bad":
+                        MES_StationOutBillList_Bad oMES_StationOutBillList_Bad = new MES_StationOutBillList_Bad();
+                        oMES_StationOutBillList_Bad.MdiParent = oMain;
+                        oMES_StationOutBillList_Bad.ModCaption = gnmc;
+                        oMES_StationOutBillList_Bad.Show();
+                        oMainForm.AddTabPage(oMES_StationOutBillList_Bad);
+                        break;
+                    case "sc_prodwiptotalreport":
+                        Sc_ProdWIPTotalReport oSc_ProdWIPTotalReport = new Sc_ProdWIPTotalReport();
+                        oSc_ProdWIPTotalReport.MdiParent = oMain;
+                        oSc_ProdWIPTotalReport.ModCaption = gnmc;
+                        oSc_ProdWIPTotalReport.Show();
+                        oMainForm.AddTabPage(oSc_ProdWIPTotalReport);
+                        break;
+                    case "mes_wipprocreport":
+                        MES_WIPProcReport oMES_WIPProcReport = new MES_WIPProcReport();
+                        oMES_WIPProcReport.MdiParent = oMain;
+                        oMES_WIPProcReport.ModCaption = gnmc;
+                        oMES_WIPProcReport.Show();
+                        oMainForm.AddTabPage(oMES_WIPProcReport);
+                        break;
                     case "mes_icmobillstatusreport":
                         MES_ICMOBillStatusReport oMES_ICMOBillStatusReport = new MES_ICMOBillStatusReport();
                         oMES_ICMOBillStatusReport.MdiParent = oMain;
@@ -5856,6 +5893,12 @@
                         oQC_NoPassProdCheckBillQuery.MdiParent = oMain;
                         oQC_NoPassProdCheckBillQuery.Show();
                         oMainForm.AddTabPage(oQC_NoPassProdCheckBillQuery);
+                        break;
+                    case "defectivedetailedyieldreport":
+                        DefectiveDetailedYieldReport oDefectiveDetailedYieldReport = new DefectiveDetailedYieldReport();
+                        oDefectiveDetailedYieldReport.MdiParent = oMain;
+                        oDefectiveDetailedYieldReport.Show();
+                        oMainForm.AddTabPage(oDefectiveDetailedYieldReport);
                         break;
 
                     default:
@@ -6578,8 +6621,15 @@
                 return;
             try
             {
+                //MessageBox.Show("gnsy:"+gnsy + "gnmc:"+ gnmc);
                 switch (gnsy.ToLower())
                 {
+                    case "gy_dotcheck"://点检项目
+                        Gy_DotCheck oGy_DotCheck = new Gy_DotCheck();
+                        oGy_DotCheck.MdiParent = oMain;
+                        oGy_DotCheck.Show();
+                        oMainForm.AddTabPage(oGy_DotCheck);
+                        break;
                     case "gy_basedemo":
                         //权限
                         Gy_BaseDemo oGy_BaseDemo = new Gy_BaseDemo();
@@ -7652,6 +7702,7 @@
                         oGy_QCCheckItem.Show();
                         oMainForm.AddTabPage(oGy_QCCheckItem);
                         break;
+                   
                     case "":
                         //
                         break;

--
Gitblit v1.9.1