From 02fc46d07a9cb7740bb8ab8ceec03281e15e8cec Mon Sep 17 00:00:00 2001 From: lu <123456> Date: 星期五, 15 八月 2025 10:31:09 +0800 Subject: [PATCH] 受托入库检验 --- DevApp/Gs.DevApp/Program.cs | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/DevApp/Gs.DevApp/Program.cs b/DevApp/Gs.DevApp/Program.cs index 0af929f..801da22 100644 --- a/DevApp/Gs.DevApp/Program.cs +++ b/DevApp/Gs.DevApp/Program.cs @@ -2,8 +2,9 @@ using CefSharp.WinForms; using Gs.DevApp.DevFrm; using Gs.DevApp.DevFrm.Work; +using Gs.DevApp.Properties; +using Gs.DevApp.ToolBox; using System; -using System.Configuration; using System.Diagnostics; using System.IO; using System.Windows.Forms; @@ -52,16 +53,17 @@ if (fmLogin.DialogResult == DialogResult.OK) { //Application.Run(new DevFrm.User.SysMenu()); - string IsWeight = "0"; + //return; + bool IsWeight = false; try { - IsWeight = ConfigurationManager.AppSettings["IsWeight"]; + IsWeight = Settings.Default.isWeight; } catch (Exception) { } - if (IsWeight == "1") - Application.Run(new Frm_Work09()); + if (IsWeight == true) + Application.Run(new Frm_Work09(QcSeason.浜х嚎绉伴噸.ToString())); else Application.Run(new FrmMain()); } -- Gitblit v1.9.3