From 92e3a6c07b96ed6cf911f5331d5a24685a3a0a09 Mon Sep 17 00:00:00 2001
From: jingh <jingh@LAPTOP-I53VDLOO>
Date: 星期二, 05 十月 2021 13:31:43 +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