From ef3318c39fe8358b663e66daeb98adf1de1b97a8 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周四, 28 11月 2024 11:30:45 +0800 Subject: [PATCH] 增加 齐套验证县城 --- CC/iWareCC_ASRS/FormCC.cs | 34 ++++++++++++++++++++++++++++++++-- 1 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CC/iWareCC_ASRS/FormCC.cs b/CC/iWareCC_ASRS/FormCC.cs index c1cd1ad..99387b2 100644 --- a/CC/iWareCC_ASRS/FormCC.cs +++ b/CC/iWareCC_ASRS/FormCC.cs @@ -5,6 +5,8 @@ using iWareCC.SrmService; using iWareCC.StationService; using iWareCC.ThreadService; +using iWareCC.ThreadService._03_BZ12_鏈哄櫒浜虹爜鍖呭伐浣峗; +using iWareCC.ThreadService._04_BZ21_鎼繍鏁村灈鏈哄櫒浜篲; using iWareCC.WCF; using iWareCommon.Common.Globle; using iWareCommon.Utils; @@ -36,6 +38,11 @@ /// 鍏ㄥ眬鈥旀槸鍚﹀彲浠ヨ繍琛屾墽琛屽嚭搴撴ā寮� /// </summary> public static bool IsAllowRunOutMode = false; + + /// <summary> + /// 褰撳墠涓嬪彂鍑哄簱浠诲姟鐨勫寘鍙� + /// </summary> + public static string currHandlerPackageCodeForIssueOutboundTask = ""; /// <summary> /// 1鍙峰爢鍨涙満鍏ュ簱鍙f壂鐮佸己鍒堕獙璇侀�氳繃 @@ -233,11 +240,14 @@ new Thread(DataProcess_BZ39.Handler).Start(); + new Thread(DataProcess_BZ12.Hander).Start(); + new Thread(DataProcess_BZ12_FinishTask.Handler).Start(); - + new Thread(DataProcess_BZ21.Hander).Start(); + new Thread(DataProcess_BZ21_FinishTask.Handler).Start(); new Thread(DeleteData).Start(); - //new Thread(LineInSacnResult.HandlerLineInSacnResult).Start(); + //new Thread(PrintHandler.Handler).Start(); @@ -1539,6 +1549,8 @@ DoCommonCheckedChanged(ref SystemValue.isAllowRuning_DataProcess_RobotBuffer_ModeChange, ck_DataProcess_RobotBuffer_ModeChange); + DoCommonCheckedChanged(ref SystemValue.isAllowRuning_DataProcess_ValidateQiTao, ck_DataProcess_ValidateQiTao); + DoCommonCheckedChanged(ref SystemValue.isAllowRuning_DataProcess_RobotBuffer_FinishTaskForOutbound, checkBox_DataProcess_RobotBuffer_FinishTaskForOutbound); @@ -1831,6 +1843,7 @@ } this.lbl_RobotMode.Text = "缂撳瓨宀涙満鍣ㄤ汉妯″紡:" + (IsAllowRunOutMode ? "鍑哄簱妯″紡" : "鍏ュ簱妯″紡"); + this.lbl_currHandlerPackageCodeForIssueOutboundTask.Text = "褰撳墠涓嬪彂鍑哄簱浠诲姟鐨勫寘鍙�:" + currHandlerPackageCodeForIssueOutboundTask; } } @@ -3535,5 +3548,22 @@ { } + + private void button24_Click(object sender, EventArgs e) + { + //寮哄埗璇ュ寘鍙峰嚭搴� + var packageCode = this.tb_PackageCode.Text.Trim(); + + var alertMsg = ""; + DataProcess_RobotBuffer_ForceOutbound.Handler(packageCode, ref alertMsg); + if (!string.IsNullOrEmpty(alertMsg)) + { + MessageBox.Show("閿欒:" + alertMsg); + } + else + { + MessageBox.Show("宸插鐞�"); + } + } } } -- Gitblit v1.9.3