From e8323315b683a76509b9c1ecc717bb5b6a9ee08a Mon Sep 17 00:00:00 2001
From: yanjinhui <3306209981@qq.com>
Date: 星期二, 14 四月 2026 18:07:04 +0800
Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/RuiShengZhiNeng/GaoPuLiTiKu

---
 代码管理/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/TaskMethods.cs |  101 ++++++++++++++++++++++++++++----------------------
 1 files changed, 57 insertions(+), 44 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/TaskMethods.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/TaskMethods.cs"
index 2191f2d..25fc196 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/TaskMethods.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/TaskMethods.cs"
@@ -1,6 +1,7 @@
 锘縰sing Autofac.Core;
 using Magicodes.IE.Core;
 using NetTaste;
+using OfficeOpenXml.FormulaParsing.Excel.Functions.Text;
 using System;
 using System.Collections.Generic;
 using System.Linq;
@@ -8,6 +9,7 @@
 using System.Reflection.Metadata;
 using System.Text;
 using System.Text.Json;
+using System.Text.RegularExpressions;
 using System.Threading.Tasks;
 using WIDESEAWCS_Common;
 using WIDESEAWCS_Common.LocationEnum;
@@ -83,7 +85,7 @@
                                 task.TaskState = (int)TaskStatusEnum.HktransportIng;
                                 BaseDal.UpdateData(task);
                             }
-                            else
+                            else if (task.TaskState == (int)TaskStatusEnum.Execut)
                             {
                                 task.TaskState = (int)TaskStatusEnum.Takeing;
                                 TaskFeedback(task, 1);
@@ -176,7 +178,7 @@
                                     BaseDal.UpdateData(task);
                                 }
                                 // //鍥涙ゼ鍑烘彁鍗囨満 鍏ュ簱 涔嬪墠鏄疉GV_ToExecute  //瑕佸啓鎴愬彇璐у畬鎴愮姸鎬乀akeFinish
-                                else if ((task.TaskType == TaskTypeEnum.Q1TSJ4.ObjToInt() || task.TaskType == TaskTypeEnum.F03.ObjToInt()) && task.TaskState == (int)TaskStatusEnum.AGV_ToExecute)
+                                else if ((task.TaskType == TaskTypeEnum.Q1TSJ4.ObjToInt() || task.TaskType == TaskTypeEnum.F03.ObjToInt()) && task.TaskState == (int)TaskStatusEnum.TakeFinish)
                                 {
                                     var device = Storage.Devices.FirstOrDefault(x => x.DeviceCode == "TSJ") as OtherDevice;
                                     if (device == null) task.ExceptionMessage = "鏈壘鍒版彁鍗囨満淇℃伅";
@@ -283,7 +285,7 @@
                         case "intolift": //杩涘叆鐢垫
                             {
                                 //鍏ゼ鍒颁竴妤肩殑鍏ュ簱浠诲姟
-                                if (task.TaskType == (int)TaskTypeEnum.Q3RK || task.TaskType == (int)TaskTypeEnum.MOVE || task.TaskType == (int)TaskTypeEnum.F01)
+                                if (task.TaskType == (int)TaskTypeEnum.Q3RK || task.TaskType == (int)TaskTypeEnum.MOVE || task.TaskType == (int)TaskTypeEnum.F01 || task.TaskType == (int)TaskTypeEnum.Q3CK)
                                 {
                                     task.TaskState = TaskStatusEnum.Hkintolift.ObjToInt();
                                     BaseDal.UpdateData(task);
@@ -292,7 +294,7 @@
                             break;
                         case "leavelift": //绂诲紑鐢垫
                             {
-                                if (task.TaskType == (int)TaskTypeEnum.Q3RK || task.TaskType == (int)TaskTypeEnum.MOVE || task.TaskType == (int)TaskTypeEnum.F01)
+                                if (task.TaskType == (int)TaskTypeEnum.Q3RK || task.TaskType == (int)TaskTypeEnum.MOVE || task.TaskType == (int)TaskTypeEnum.F01 || task.TaskType == (int)TaskTypeEnum.Q3CK)
                                 {
                                     task.TaskState = TaskStatusEnum.HKleavelift.ObjToInt();
                                     BaseDal.UpdateData(task);
@@ -393,12 +395,18 @@
                             }
                             if (Rgv.content.status == 5)
                             {
-                                if (task.TaskState == (int)TaskStatusEnum.Execut)
+                                task.ExceptionMessage = Rgv.content.errorReason;
+                                var Error = _taskErrorMessageService.Repository.QueryFirst(x => x.ErrorCode == Rgv.content.errorCode && x.DeviceType == (int)deviceTypeEnum);
+                                if (Error != null)
                                 {
-                                    task.TaskState = (int)TaskStatusEnum.New;
-                                    task.Remark = "鍥涘悜杞﹀弽棣堝け璐�,閲嶆柊涓嬪彂";
-                                    BaseDal.UpdateData(task);
+                                    task.ExceptionMessage = Error.ExceptionMessage;
+                                    MatchCollection matches = Regex.Matches(Rgv.content.errorReason, @"\(([^)]+)\)");
+                                    if (matches.Count > 0)
+                                        task.ExceptionMessage = ReplacePlaceholders(Rgv.content.errorReason, Error.ExceptionMessage);
+                                    ErrorTaskFeedback(task, true, Error.ErrorCode.ToString());
                                 }
+                                else
+                                    ErrorTaskFeedback(task, true);
                             }
                         }
                     }
@@ -414,6 +422,30 @@
                 _trackloginfoService.AddTrackLog(TaskDTO, content, $"{deviceName}浠诲姟鐘舵�佸弽棣�", "", "");
             }
             return content;
+        }
+        #endregion
+
+        #region 寮傚父淇℃伅杞崲
+        /// <summary>
+        /// 寮傚父淇℃伅()鍐呭杞崲
+        /// </summary>
+        /// <param name="source"></param>
+        /// <param name="targetTemplate"></param>
+        /// <returns></returns>
+        public string ReplacePlaceholders(string source, string targetTemplate)
+        {
+            // 鎻愬彇婧愬瓧绗︿覆涓殑鎵�鏈夋嫭鍙峰��
+            var values = Regex.Matches(source, @"\(([^)]+)\)")
+                              .Cast<Match>()
+                              .Select(m => m.Groups[1].Value)
+                              .ToList();
+
+            // 鏇挎崲鐩爣妯℃澘涓殑鎵�鏈� (%v)
+            int idx = 0;
+            string result = Regex.Replace(targetTemplate, @"\(\%v\)", _ =>
+                idx < values.Count ? values[idx++] : "");
+
+            return result;
         }
         #endregion
 
@@ -606,38 +638,22 @@
                         dt_RGVLocationInfo.LocationStatus = locationStatusEnum.ObjToInt();
                         _rGVLocationInfoService.Repository.UpdateData(dt_RGVLocationInfo);
                     }
-                }
-                else//骞冲簱搴撲綅
-                {
 
-                }
-                return WebResponseContent.Instance.OK();
-            }
-            catch (Exception ex)
-            {
-                throw new Exception(ex.Message);
-            }
-        }
-        #endregion
-
-        #region 鏇存柊涓�妤肩珯鍙扮姸鎬�
-        public WebResponseContent UpdateStandStatus(Dt_Task task, string stationCode, LocationStatusEnum locationStatusEnum)
-        {
-            try
-            {
-                Dt_StationManger? stationManger = _stationMangerService.Repository.QueryFirst(x => x.StationCode == task.TargetAddress);
-                //stationManger.IsOccupied = LocationStatusEnum.Lock.ObjToInt();
-                if (stationManger != null)
-                {
-                    if (locationStatusEnum == LocationStatusEnum.Free) //濡傛灉璧风偣瀹屾垚灏辩粰璐т綅璧嬪�兼墭鐩樺彿
+                    Dt_StationManger stationManger = _stationMangerService.Repository.QueryFirst(x => x.StationCode == locationCode);
+                    if (stationManger != null)
                     {
-                        stationManger.IsOccupied = LocationStatusEnum.Lock.ObjToInt();
+                        if (locationStatusEnum == LocationStatusEnum.Free) //濡傛灉璧风偣瀹屾垚灏辩粰璐т綅璧嬪�兼墭鐩樺彿
+                        {
+                            stationManger.Remark = "";
+                            stationManger.IsOccupied = LocationStatusEnum.Free.ObjToInt();
+                        }
+                        else
+                        {
+                            stationManger.Remark = palletCode;
+                            stationManger.IsOccupied = LocationStatusEnum.Lock.ObjToInt();
+                        }
+                        _stationMangerService.UpdateData(stationManger);
                     }
-                    else
-                    {
-                        stationManger.IsOccupied = LocationStatusEnum.Free.ObjToInt();
-                    }
-                    _stationMangerService.UpdateData(stationManger);
                 }
                 return WebResponseContent.Instance.OK();
             }
@@ -692,7 +708,7 @@
         }
         #endregion
         #region 澶辫触浠诲姟涓婃姤WMS骞跺垹闄や换鍔�
-        public WebResponseContent ErrorTaskFeedback(Dt_Task dt_Task, bool Del)
+        public WebResponseContent ErrorTaskFeedback(Dt_Task dt_Task, bool Del = false, string ErrorCode = "")
         {
             WebResponseContent content = new WebResponseContent();
             WMSInOutBoundCompleteFeedback boundCompleteFeedback = new WMSInOutBoundCompleteFeedback();
@@ -708,7 +724,7 @@
                     boundCompleteFeedback.fromStationCode = dt_Task.SourceAddress;
                     boundCompleteFeedback.toLocationCode = dt_Task.TargetAddress;
                     boundCompleteFeedback.status = 3;
-                    boundCompleteFeedback.custStatus = "";
+                    boundCompleteFeedback.custStatus = ErrorCode;
                     boundCompleteFeedback.memo = dt_Task.ExceptionMessage;
                     string response = HttpHelper.Post(apiInfo.ApiAddress, boundCompleteFeedback.Serialize());
                     agvContent = response.DeserializeObject<WMSReturn>();
@@ -729,15 +745,12 @@
             finally
             {
                 _trackloginfoService.AddTrackLog(boundCompleteFeedback, content, "鍑哄叆搴撲换鍔$姸鎬佸弽棣圵MS", "", "");
-                if (agvContent != null && agvContent.code == 200 && Del) BaseDal.DeleteAndMoveIntoHty(dt_Task, OperateTypeEnum.鑷姩鍒犻櫎);
+                if (agvContent != null && agvContent.code == 200 && Del)
+                    BaseDal.DeleteAndMoveIntoHty(dt_Task, OperateTypeEnum.鑷姩鍒犻櫎);
                 else BaseDal.UpdateData(dt_Task);
             }
             return content;
         }
         #endregion
-
-
-
-
     }
 }

--
Gitblit v1.9.3