From 0128fce75a5e7cc9afc4bd89ce1966eb2231b69f Mon Sep 17 00:00:00 2001
From: yanjinhui <3306209981@qq.com>
Date: 星期二, 31 三月 2026 10:55:33 +0800
Subject: [PATCH] 编写海康跨楼层接口

---
 代码管理/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/KLSTaskMethods.cs |   80 ++++++++++++++++++++++++++++++++++++++-
 1 files changed, 77 insertions(+), 3 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/KLSTaskMethods.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/KLSTaskMethods.cs"
index 2f36005..3bf1406 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/KLSTaskMethods.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WCS/WIDESEAWCS_Server/WIDESEAWCS_TaskInfoService/KLSTaskMethods.cs"
@@ -13,6 +13,7 @@
 using WIDESEAWCS_DTO;
 using WIDESEAWCS_ITaskInfoService;
 using WIDESEAWCS_Core.Helper;
+using WIDESEAWCS_QuartzJob;
 
 namespace WIDESEAWCS_TaskInfoService
 {
@@ -201,18 +202,91 @@
         }
         #endregion
 
-        #region 5 璺ㄦゼ灞傝繍杈撲换鍔″垱寤�
+        #region 5 璺ㄦゼ灞傝繍杈撲换鍔″垱寤� 锛堥兘鏄偣鍒扮偣锛�
         public WebResponseContent CarryTask(TaskDTO taskDTO, int taskType)
         {
+            WebResponseContent content = new WebResponseContent();
             try
             {
+                Dt_HKLocationInfo? hKLocationInfo = null;
+                Dt_StationInfo? stationInfo = null;
+                Dt_Task dt_Task = null;
+                //鍏ュ簱 鍒颁竴妤间笁涓珯鍙扮殑浣嶇疆
+                if (taskType == (int)TaskTypeEnum.Q3RK)
+                {
+                    //璇诲彇鍏夌數淇″彿
+                    var device = Storage.Devices.FirstOrDefault(x => x.DeviceCode == "F1") as OtherDevice;
+                    if (device == null) throw new Exception("鏈壘鍒�1妤艰川妫�闂ㄨ澶囦俊鎭�");
+                    if (!device.IsConnected) throw new Exception("PLC1妤艰川妫�闂ㄨ澶囪繛鎺ュけ璐�");
+                    bool value = device.GetValue<QualityInspectionCommandEnum, bool>(QualityInspectionCommandEnum.R_StockAvailableSymbol, taskDTO.toLocationCode);
+                    if (value)
+                    {
+                        content.Error($"{taskDTO.toLocationCode}绔欏彴鏈夎揣锛屾棤娉曞叆搴�");
+                    }
+                    dt_Task = new Dt_Task()
+                    {
+                        TaskNum = GetTaskNum(nameof(SequenceEnum.SeqTaskNum)),
+                        WMSTaskNum = taskDTO.taskCode,
+                        Grade = taskDTO.taskPriority,
+                        PalletCode = taskDTO.containerCode,
+                        Roadway = hKLocationInfo.RoadwayNo,
+                        TaskState = (int)TaskStatusEnum.New,
+                        TaskType = taskType,
+                        SourceAddress = taskDTO.fromLocationCode,
+                        CurrentAddress = taskDTO.fromLocationCode,
+                        NextAddress = taskDTO.toLocationCode,
+                        TargetAddress = taskDTO.toLocationCode,
+                        Creater = "WMS",
+                    };
 
-                return WebResponseContent.Instance.OK();
+                }
+                //鍑哄簱
+                if (taskType == (int)TaskTypeEnum.Q3CK)
+                {
+                     stationInfo = _stationInfo.Repository.QueryFirst(x => x.StationName == taskDTO.toLocationCode) ?? throw new Exception($"鏈壘鍒拌捣鐐瑰簱浣嶃�恵taskDTO.toLocationCode}銆戯紒");
+                    if (stationInfo.StationName != LocationStatusEnum.InStock.ToString()) throw new Exception($"璧风偣搴撲綅銆恵taskDTO.toLocationCode}銆戝綋鍓嶅簱浣嶇姸鎬佷笉鍙嚭搴擄紒");
+                    if (stationInfo.PalletCode != taskDTO.containerCode) throw new Exception($"璧风偣搴撲綅銆恵taskDTO.toLocationCode}銆戠粦瀹氭枡绠卞彿銆恵stationInfo.PalletCode}銆戜笌浠诲姟鏂欑鍙枫�恵taskDTO.containerCode}銆戜笉鍖归厤锛�");
+                        dt_Task = new Dt_Task()
+                    {
+                        TaskNum = GetTaskNum(nameof(SequenceEnum.SeqTaskNum)),
+                        WMSTaskNum = taskDTO.taskCode,
+                        //WMSId = GetTaskNum(nameof(SequenceEnum.SeqTaskNum)),
+                        Grade = taskDTO.taskPriority,
+                        PalletCode = taskDTO.containerCode,
+                        Roadway = hKLocationInfo.RoadwayNo,
+                        TaskState = (int)TaskStatusEnum.New,
+                        TaskType = taskType,
+                        SourceAddress = taskDTO.fromLocationCode,
+                        CurrentAddress = taskDTO.fromLocationCode,
+                        NextAddress = taskDTO.toLocationCode,
+                        TargetAddress = taskDTO.toLocationCode,
+                        Creater = "WMS",
+                    };
+                }
+                try
+                {
+                    Db.Ado.BeginTran();
+                    BaseDal.AddData(dt_Task);
+                    _hKLocationInfoService.Repository.UpdateData(hKLocationInfo);
+                    _stationInfo.Repository.UpdateData(stationInfo);
+                    Db.Ado.CommitTran();
+                }
+                catch (Exception ex)
+                {
+                    Db.Ado.RollbackTran();
+                    throw new Exception(ex.Message);
+                }
+                return content.OK(data: new
+                {
+                    taskCode = taskDTO.taskCode,
+                    Message = "鎴愬姛锛�"
+                });
             }
             catch (Exception ex)
             {
-                throw new Exception(ex.Message);
+                content.Error(ex.Message);
             }
+            return content;
         }
         #endregion
 

--
Gitblit v1.9.3