From f21906b6464a0e6b42aade6f70127f7b8d6611f3 Mon Sep 17 00:00:00 2001
From: chengsc <11752@DESKTOP-DS49RCP>
Date: 星期三, 11 六月 2025 16:56:39 +0800
Subject: [PATCH] 修改任务模板问题

---
 Admin.NET/WCS.Application/Util/FourWayCarUtil.cs |   30 ++++++++++++++++++++++++++++--
 1 files changed, 28 insertions(+), 2 deletions(-)

diff --git a/Admin.NET/WCS.Application/Util/FourWayCarUtil.cs b/Admin.NET/WCS.Application/Util/FourWayCarUtil.cs
index 596b8d0..e62d86b 100644
--- a/Admin.NET/WCS.Application/Util/FourWayCarUtil.cs
+++ b/Admin.NET/WCS.Application/Util/FourWayCarUtil.cs
@@ -7,6 +7,7 @@
 using System.Text;
 using System.Threading.Tasks;
 using WCS.Application.Entity;
+using static Elastic.Clients.Elasticsearch.JoinField;
 using static SKIT.FlurlHttpClient.Wechat.Api.Models.CustomServiceKfSessionGetWaitCaseResponse.Types;
 
 namespace WCS.Application.Util;
@@ -25,6 +26,10 @@
     /// <returns></returns>
     public static List<CarModel> GetCarPathUp(List<CarModel> list, int moveType)
     {
+        if (list == null)
+        {
+            return null;
+        }
         for (int i = 0; i < list.Count; i++)
         {
             if (i >= 0 && i < list.Count - 1)
@@ -423,7 +428,6 @@
     }
 
 
-
     /// <summary>
     /// 鑾峰彇灏忚溅璺緞
     /// </summary>
@@ -491,7 +495,7 @@
 
                 if (current.Equals(end))
                 {
-                    Log.Error(ReconstructPath(cameFrom, current).ToString());
+                    Log.Error("灏忚溅璺緞鍒嗛厤锛�" +ReconstructPath(cameFrom, current).ToString());
                     return ReconstructPath(cameFrom, current);
                 }
 
@@ -611,6 +615,28 @@
     }
 
     /// <summary>
+    /// 鑾峰彇鎬讳换鍔¤〃涓嬪彂ID涓婚敭
+    /// </summary>
+    /// <returns></returns>
+    public static int GetTaskId()
+    {
+        var list = _db.Queryable<WcsTask>().ToList();
+        var maxNo = list.Max(m => m.TaskId);
+
+        if (maxNo != null && maxNo > 0)
+        {
+            if (maxNo++ > 99999999)
+            {
+                return 1;
+            }
+
+            return (int)maxNo++;
+        }
+
+        return 1;
+    }
+
+    /// <summary>
     /// 璁$畻鏇煎搱椤胯窛绂�
     /// </summary>
     /// <param name="start">璧峰浣嶇疆</param>

--
Gitblit v1.8.0