From 82bf8f5e4d2f2dd392fa5063b804e3c7ca8ed3fd Mon Sep 17 00:00:00 2001
From: YL <YL@LAPTOP-SE03PLUR>
Date: 星期五, 08 十月 2021 19:40:18 +0800
Subject: [PATCH] 单据打印选择打印模板

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

diff --git a/LMES/ClsShowMod.cs b/LMES/ClsShowMod.cs
index b6cfb3d..9c32043 100644
--- a/LMES/ClsShowMod.cs
+++ b/LMES/ClsShowMod.cs
@@ -5189,6 +5189,20 @@
             {
                 switch (gnsy.ToLower())
                 {
+                    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;

--
Gitblit v1.9.1