From a3b21ee43b13ad79302aceb9a68405b45e6467a4 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期三, 15 一月 2025 20:05:25 +0800
Subject: [PATCH] 更新 ReprintLabel 逻辑,增加 TemplateInput 类

---
 Tiger.Business.MES/WorkAction/IPQC.cs |  197 +++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 181 insertions(+), 16 deletions(-)

diff --git a/Tiger.Business.MES/WorkAction/IPQC.cs b/Tiger.Business.MES/WorkAction/IPQC.cs
index 22cb3cb..b5b36dc 100644
--- a/Tiger.Business.MES/WorkAction/IPQC.cs
+++ b/Tiger.Business.MES/WorkAction/IPQC.cs
@@ -6,6 +6,7 @@
 using System.Text;
 using System.Threading.Tasks;
 using Tiger.IBusiness;
+using Tiger.IBusiness.MES.WorkAction;
 using Tiger.Model;
 using Tiger.Model.Entitys.MES.Position;
 
@@ -14,29 +15,63 @@
     public class IPQC : IIPQC
     {
         #region Propertys & Variables
+        #region 鍥哄畾鍐欐硶锛屽伐搴忎腑鐨勫繀瑕佷俊鎭�
+        public DbClient MainDB { get; set; }
         public bool IsFinished { get; set; } = false;
         public IWorkStep CurStep { get; set; }
         public IPosition CurPosition { get; set; }
         public MES_WO_NODE_ACT NodeAct { get; set; }
         public MES_WO_ACTION Setting { get; set; }
+        #endregion
         #endregion Propertys & Variables
 
         #region Functions
         /// <summary>
-        /// 寮�濮嬫墽琛屽伐搴忚涓�
+        /// 鍒濆鍖栧伐搴忚涓�
         /// </summary>
         /// <returns></returns>
-        public ApiAction<SubmitOutput> Begin(IWorkStep curStep, IPosition position, MES_WO_NODE_ACT nodeAct, MES_WO_ACTION setting)
+        public void Init(IWorkStep curStep, IPosition position, MES_WO_NODE_ACT nodeAct, MES_WO_ACTION setting)
         {
+            #region 鍥哄畾鍐欐硶锛岀粰榛樿鍙橀噺璧嬪��
+            MainDB = position.MainDB;
             CurStep = curStep;
             CurPosition = position;
             NodeAct = nodeAct;
             Setting = setting;
-            var action = new ApiAction<SubmitOutput>();
+            #endregion
+
+            CurStep.Message = Biz.L("绛夊緟娴嬭瘯缁撴灉");
+            CurStep.Status = StepStatus.Normal;
+        }
+
+        /// <summary>
+        /// 鑾峰彇琛屼负寮�濮嬬殑鎻愮ず淇℃伅
+        /// </summary>
+        /// <returns></returns>
+        public Locale GetBeginMsg()
+        {
+            //var msg = new Locale("MES.WorkAction.IPQC.BeginMsg");
+            var msg = new Locale($"璇锋彁浜ゆ祴璇曠粨鏋�");
+            return msg;
+        }
+
+        /// <summary>
+        /// 灏濊瘯寮�濮嬫墽琛屽伐搴忚涓�
+        /// </summary>
+        /// <returns></returns>
+        public ApiAction<SubmitOutput> TryBegin(SubmitInput input)
+        {
+            var action = new ApiAction<SubmitOutput>(new SubmitOutput());
 
 
             //action.LocaleMsg = new($"璇锋寜娴嬭瘯椤规彁浜ゆ祴璇曟暟鎹�");
             action.LocaleMsg = new("MES.WorkAction.IPQC.PleaseTest");
+
+            //濡傛灉鏍规嵁杈撳叆鍙互寮�濮嬫墽琛屽綋鍓嶈涓哄垯鏍囪涓烘垚鍔燂紝鍚﹀垯澶辫触
+            CurStep.Message = Biz.L("绛夊緟娴嬭瘯");
+            CurStep.Status = StepStatus.Normal;
+            action.IsSuccessed = false;
+            action.Data.ShortMsg = new("绛夊緟娴嬭瘯", ShortMessage.Types.Success);
             return action;
         }
         /// <summary>
@@ -45,7 +80,35 @@
         /// <returns></returns>
         public ApiAction<SubmitOutput> Submit(SubmitInput input)
         {
-            var action = new ApiAction<SubmitOutput>();
+            var action = new ApiAction<SubmitOutput>(new SubmitOutput());
+
+            //鎻愪氦鏁版嵁鎵ц鎴愬姛
+            if (true)
+            {
+                action.IsSuccessed = true;
+                action.LocaleMsg = new($"鎵ц鎴愬姛");
+                //action.LocaleMsg = new("MES.WorkAction.IPQC.Success");
+                //琛屼负鎵ц瀹屾垚
+                if (false)
+                {
+                	action = End(input);
+                }
+            }
+            //鎻愪氦鏁版嵁鎵ц澶辫触
+            else
+            {
+                CurStep.Message = Biz.L("娴嬭瘯澶辫触");
+                CurStep.Status = StepStatus.Error;
+                action.Data.ShortMsg = new("娴嬭瘯澶辫触", ShortMessage.Types.Failed);
+                action.IsSuccessed = false;
+                //action.LocaleMsg = new($"鎵ц澶辫触");
+                action.LocaleMsg = new("MES.WorkAction.IPQC.Fail");
+                //濡傛灉琛屼负璁剧疆涓哄嚭閿欓渶瑕侀噸缃伐搴忔搷浣�
+                if (NodeAct.NEED_RESET == "Y")
+                {
+                    CurPosition.ResetNode();
+                }
+            }
 
             return action;
         }
@@ -53,22 +116,124 @@
         /// 缁撴潫鎵ц宸ュ簭琛屼负
         /// </summary>
         /// <returns></returns>
-        public ApiAction<SubmitOutput> End()
+        public ApiAction<SubmitOutput> End(SubmitInput input)
         {
-            var action = new ApiAction<SubmitOutput>();
+            var action = new ApiAction<SubmitOutput>(new SubmitOutput());
 
+            //璁板綍琛屼负鎿嶄綔璁板綍
+            var wipActs = new List<MES_WIP_ACT>();
+            var wipVars = new List<MES_WIP_ACT_VAR>();
+            foreach (var wipSn in CurPosition.CurWipSNs)
+            {
+                var wipAct = new MES_WIP_ACT()
+                {
+                    AUTH_ORG = CurPosition.WorkBatch.WO.AUTH_ORG,
+                    AUTH_PROD = CurPosition.CurLine.LINE_CODE,
+                    WIP_ID = wipSn.ID,
+                    HIS_ID = CurPosition.CurWipSNHiss.First(q => q.SN == wipSn.SN).ID,
+                    SN = wipSn.SN,
+                    STATUS = wipSn.STATUS,
+                    ITEM_CODE = wipSn.ITEM_CODE,
+                    WORK_ORDER = wipSn.WORK_ORDER,
+                    BATCH_NO = wipSn.BATCH_NO,
+                    ROT_CODE = wipSn.ROT_CODE,
+                    NODE_ID = wipSn.NODE_ID,
+                    NODE_NAME = wipSn.NODE_NAME,
+                    ACT_ID = NodeAct.ID,
+                    ACT_NAME = NodeAct.ACT_NAME,
+                    FTY_CODE = wipSn.FTY_CODE,
+                    WS_CODE = wipSn.WS_CODE,
+                    LINE_CODE = wipSn.LINE_CODE,
+                    POST_CODE = wipSn.POST_CODE,
+                    OPER_CODE = wipSn.OPER_CODE,
+                    SEGMENT = wipSn.SEGMENT,
+                    FLOW_SN = wipSn.FLOW_SN,
+                    TRAY_SN = wipSn.TRAY_SN,
+                    INNER_SN = wipSn.INNER_SN,
+                    CARTON_SN = wipSn.CARTON_SN,
+                    PALLET_SN = wipSn.PALLET_SN,
+                    OPERATION_TIME = DateTime.Now,
+                    SFTS_CODE = wipSn.SFTS_CODE,
+                    SFT_CODE = wipSn.SFT_CODE,
+                    PRD_CODE = wipSn.PRD_CODE,
+                    ACT_TYPE = NodeAct.ACT_TYPE,
+                    ACT_SN = wipSn.SN,
+                    ACT_VALUE_1 = "",
+                    ACT_VALUE_2 = "",
+                    ACT_VALUE_3 = "",
+                    ACT_VALUE_4 = "",
+                    ACT_VALUE_5 = "",
+                    ACT_VAR_DIC = CurStep.ActionDic.ToJson(),
+                    ACT_RESULT = "Y",
+                    ELAPSED_TIME = CurStep.GetElapsedTime().TotalMilliseconds.ToInt64(),
+                    TRACE_INFO = $"鎵ц鎴愬姛",
+                };
+                wipActs.Add(wipAct);
+                foreach (var item in NodeAct.Variables)
+                {
+                    var wipVar = new MES_WIP_ACT_VAR()
+                    {
+                        AUTH_ORG = CurPosition.WorkBatch.WO.AUTH_ORG,
+                        AUTH_PROD = CurPosition.CurLine.LINE_CODE,
+                        HIS_ID = CurPosition.CurWipSNHiss.First(q => q.SN == wipSn.SN).ID,
+                        WIP_ID = wipSn.ID,
+                        SN = wipSn.SN,
+                        ITEM_CODE = wipSn.ITEM_CODE,
+                        WORK_ORDER = wipSn.WORK_ORDER,
+                        BATCH_NO = wipSn.BATCH_NO,
+                        CUST_CODE = CurPosition.WorkBatch.WO.CUST_CODE,
+                        ROT_CODE = wipSn.ROT_CODE,
+                        NODE_ID = wipSn.NODE_ID,
+                        NODE_NAME = wipSn.NODE_NAME,
+                        ACT_ID = NodeAct.ID,
+                        ACT_NAME = NodeAct.ACT_NAME,
+                        FTY_CODE = wipSn.FTY_CODE,
+                        WS_CODE = wipSn.WS_CODE,
+                        LINE_CODE = wipSn.LINE_CODE,
+                        POST_CODE = wipSn.POST_CODE,
+                        OPER_CODE = wipSn.OPER_CODE,
+                        SEGMENT = wipSn.SEGMENT,
+                        FLOW_SN = wipSn.FLOW_SN,
+                        TRAY_SN = wipSn.TRAY_SN,
+                        INNER_SN = wipSn.INNER_SN,
+                        CARTON_SN = wipSn.CARTON_SN,
+                        PALLET_SN = wipSn.PALLET_SN,
+                        OPERATION_TIME = DateTime.Now,
+                        SFTS_CODE = wipSn.SFTS_CODE,
+                        SFT_CODE = wipSn.SFT_CODE,
+                        PRD_CODE = wipSn.PRD_CODE,
+                        VAR_CODE = item.VAR_CODE,
+                        VAR_NAME = item.VAR_NAME,
+                        VAR_CONTROL = item.VAR_CONTROL,
+                        VALUE_TYPE = item.VALUE_TYPE,
+                        PROCESS_VAR = item.PROCESS_VAR,
+                        INPUT_VALUE = CurStep.ActionDic.GetOrDefault(item.VAR_CODE),
+                        TRACE_INFO = CurStep.ActionDic.ToJson(),
+                    };
+                    wipVars.Add(wipVar);
+                }
+            }
+
+            //鍒涘缓鍙橀噺鍏嬮殕瀵硅薄鐢ㄤ簬浼犲叆DBSubmitAction涓繚瀛樺綋鍓嶉渶瑕佹殏瀛樼殑鏁版嵁鍊�
+            var _wipActs = wipActs.Clone();
+            var _wipVars = wipVars.Clone();
+            //淇濆瓨鏁版嵁
+            CurStep.DBSubmitAction = () =>
+            {
+                var db = CurPosition.GetCommitDB();
+                db.Storageable(_wipActs, CurPosition.UserCode).ExecuteCommand();
+                db.Storageable(_wipVars, CurPosition.UserCode).ExecuteCommand();
+            };
+
+            IsFinished = true;
+            CurStep.Message = Biz.L("娴嬭瘯瀹屾垚");
+            CurStep.Status = StepStatus.Finished;
+            action.Data.ShortMsg = new("娴嬭瘯瀹屾垚", ShortMessage.Types.Success);
+            action.LocaleMsg = new($"娴嬭瘯缁撴潫");
+            //action.LocaleMsg = new("MES.WorkAction.IPQC.Finish");
             return action;
         }
-        /// <summary>
-        /// 鑾峰彇琛屼负鎻愮ず淇℃伅
-        /// </summary>
-        /// <returns></returns>
-        public ApiAction GetPrompt()
-        {
-            var action = new ApiAction();
-            action.LocaleMsg = new($"寮�濮嬫墦鍗版潯鐮�");
-            return action;
-        }
+
 
         #endregion Functions
     }

--
Gitblit v1.9.3