From e9feb28be7d4417b24bd53a77332846e2cbab734 Mon Sep 17 00:00:00 2001
From: pan <antony1029@163.com>
Date: 星期二, 18 十一月 2025 11:32:30 +0800
Subject: [PATCH] 提交

---
 项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs |   68 ++++++++++++++++++++++++++++-----
 1 files changed, 57 insertions(+), 11 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs"
index 27d5101..4bfba35 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_TaskInfoService/TaskService.cs"
@@ -16,6 +16,7 @@
 #endregion << 鐗� 鏈� 娉� 閲� >>
 
 using AutoMapper;
+using Dm.filter;
 using MailKit.Search;
 using Microsoft.Extensions.Logging;
 using Newtonsoft.Json;
@@ -307,18 +308,25 @@
             _locationInfoService.Repository.UpdateData(locationInfo);
 
             var outloks = _outStockLockInfoService.Db.Queryable<Dt_OutStockLockInfo>().Where(x => x.TaskNum == task.TaskNum).ToList();
-            outloks.ForEach(o =>
-            {
-                o.Status = OutLockStockStatusEnum.宸插嚭搴�.ObjToInt();
-            });
-            _outStockLockInfoService.Db.Updateable(outloks).ExecuteCommand();
 
-            var locationCodes = outloks.Select(it => it.LocationCode).Distinct().ToList();
+            var stockids = outloks.Select(x => x.StockId).ToList();
+            
+            _stockService.StockInfoService.Db.Updateable<Dt_StockInfo>()
+                                  .SetColumns(it => new Dt_StockInfo
+                                  {
+                                      StockStatus = StockStatusEmun.鍑哄簱閿佸畾.ObjToInt()
+                                  })
+                                  .Where(it => stockids.Contains(it.Id))
+                                  .ExecuteCommand();
 
-            //_stockRepository.Db.Updateable<Dt_StockInfo>()
-            //  .SetColumns(it => new Dt_StockInfo { StockStatus = StockStatusEmun.})
-            //  .Where(it => locationCodes.Contains(it.LocationCode))
-            //  .ExecuteCommand();
+            _stockService.StockInfoDetailService.Db.Updateable<Dt_StockInfoDetail>()
+                                  .SetColumns(it => new Dt_StockInfoDetail
+                                  {
+                                      Status = StockStatusEmun.鍑哄簱閿佸畾.ObjToInt()
+                                  })
+                                  .Where(it => stockids.Contains( it.StockId))
+                                  .ExecuteCommand();
+ 
 
 
             return WebResponseContent.Instance.OK();
@@ -378,10 +386,48 @@
             }
         }
 
-        public  WebResponseContent InPickTaskCompleted(Dt_Task task)
+        public WebResponseContent InPickTaskCompleted(Dt_Task task)
         {
             _logger.LogInformation($"TaskService  InPickTaskCompleted: {task.TaskNum}");
+            //鏌ュ簱瀛�
+            Dt_StockInfo stockInfo = _stockRepository.Db.Queryable<Dt_StockInfo>().Includes(x => x.Details).Where(x => x.PalletCode == task.PalletCode).First();
+            if (stockInfo == null)
+            {
+                return WebResponseContent.Instance.Error($"鏈壘鍒版墭鐩樺搴旂殑缁勭洏淇℃伅");
+            }
+            if (stockInfo.Details.Count == 0 && stockInfo.PalletType != PalletTypeEnum.Empty.ObjToInt())
+            {
+                return WebResponseContent.Instance.Error($"鏈壘鍒拌鎵樼洏搴撳瓨鏄庣粏淇℃伅");
+            }
 
+            //鏌ヨ揣浣�
+            Dt_LocationInfo locationInfo = _locationInfoService.Repository.QueryFirst(x => x.LocationCode == task.TargetAddress);
+            if (locationInfo == null)
+            {
+                return WebResponseContent.Instance.Error($"鏈壘鍒板搴旂殑缁堢偣璐т綅淇℃伅");
+            }
+            stockInfo.LocationCode = task.TargetAddress;
+            stockInfo.StockStatus = StockStatusEmun.鍏ュ簱瀹屾垚.ObjToInt();
+            stockInfo.Details.ForEach(x =>
+            {
+                x.Status = StockStatusEmun.鍏ュ簱瀹屾垚.ObjToInt();
+            });
+            _stockService.StockInfoService.Repository.UpdateData(stockInfo);
+            _stockService.StockInfoDetailService.Repository.UpdateData(stockInfo.Details);
+
+            if (stockInfo.PalletType == PalletTypeEnum.Empty.ObjToInt())
+            {
+                locationInfo.LocationStatus = LocationStatusEnum.Pallet.ObjToInt();
+            }
+            else
+            {
+                locationInfo.LocationStatus = LocationStatusEnum.InStock.ObjToInt();
+            }
+            _locationInfoService.Repository.UpdateData(locationInfo);
+
+            task.TaskStatus = TaskStatusEnum.Finish.ObjToInt();
+
+            BaseDal.DeleteAndMoveIntoHty(task, App.User.UserId == 0 ? OperateTypeEnum.鑷姩瀹屾垚 : OperateTypeEnum.浜哄伐瀹屾垚);
 
             return WebResponseContent.Instance.OK();
         }

--
Gitblit v1.9.3