From 4d5b4319ebfb155b199ec641ec377b220f9fa837 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期三, 08 四月 2026 00:55:31 +0800
Subject: [PATCH] fix(wms): 优化组盘库存逻辑与数据库连接配置

---
 Code/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockSerivce.cs |  308 ++++++++++++++++++++++++++++++++++----------------
 1 files changed, 208 insertions(+), 100 deletions(-)

diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockSerivce.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockSerivce.cs
index 5a531aa..2b27518 100644
--- a/Code/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockSerivce.cs
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockSerivce.cs
@@ -1,7 +1,9 @@
 锘縰sing SqlSugar;
 using WIDESEA_Common.StockEnum;
 using WIDESEA_Core;
+using WIDESEA_DTO.MES;
 using WIDESEA_DTO.Stock;
+using WIDESEA_IBasicService;
 using WIDESEA_IStockService;
 using WIDESEA_Model.Models;
 
@@ -33,6 +35,16 @@
         public IStockInfo_HtyService StockInfo_HtyService { get; }
 
         /// <summary>
+        /// 浠撳簱鏈嶅姟
+        /// </summary>
+        public IWarehouseService _warehouseService { get; }
+
+        /// <summary>
+        /// Mes鎺ュ彛鏈嶅姟
+        /// </summary>
+        public IMesService _mesService { get; }
+
+        /// <summary>
         /// 鏋勯�犲嚱鏁�
         /// </summary>
         /// <param name="stockInfoDetailService">搴撳瓨鏄庣粏鏈嶅姟</param>
@@ -43,12 +55,16 @@
             IStockInfoDetailService stockInfoDetailService,
             IStockInfoService stockInfoService,
             IStockInfoDetail_HtyService stockInfoDetail_HtyService,
-            IStockInfo_HtyService stockInfo_HtyService)
+            IStockInfo_HtyService stockInfo_HtyService,
+            IMesService mesService,
+            IWarehouseService warehouseService)
         {
             StockInfoDetailService = stockInfoDetailService;
             StockInfoService = stockInfoService;
             StockInfoDetail_HtyService = stockInfoDetail_HtyService;
             StockInfo_HtyService = stockInfo_HtyService;
+            _mesService = mesService;
+            _warehouseService = warehouseService;
         }
 
         /// <summary>
@@ -102,45 +118,72 @@
         public async Task<WebResponseContent> GroupPalletAsync(StockDTO stock)
         {
             WebResponseContent content = new WebResponseContent();
-            var now = DateTime.Now;
-            var details = stock.Details.Select(item => new Dt_StockInfoDetail
+            try
             {
-                MaterielCode = "鐢佃姱",
-                MaterielName = "鐢佃姱",
-                StockQuantity = item.Quantity,
-                Unit = "PCS",
-                Creater = "system",
-                OrderNo = "111",
-                ProductionDate = now.ToString(),
-                EffectiveDate = now.AddYears(1).ToString(),
-                SerialNumber = item.CellBarcode,
-                InboundOrderRowNo = item.Channel,
-                Status = StockStatusEmun.缁勭洏鏆傚瓨.GetHashCode(),
-            }).ToList();
-
-            return await ExecuteWithinTransactionAsync(async () =>
-            {
-                var existingStock = StockInfoService.Repository.QueryFirst(s => s.PalletCode == stock.TargetPalletNo);
-                var result = false;
-                if (existingStock != null)
+                var now = DateTime.Now;
+                var details = stock.Details.Select(item => new Dt_StockInfoDetail
                 {
-                    details.ForEach(d => d.StockId = existingStock.Id);
-                    result = await StockInfoDetailService.Repository.AddDataAsync(details) > 0;
-                    return result ? content.OK("缁勭洏鎴愬姛") : content.Error("缁勭洏澶辫触");
-                }
-
-                var entity = new Dt_StockInfo
-                {
-                    PalletCode = stock.TargetPalletNo,
-                    WarehouseId = 1,
-                    StockStatus = 1,
+                    MaterielCode = "鐢佃姱",
+                    MaterielName = "鐢佃姱",
+                    StockQuantity = item.Quantity,
+                    Unit = "PCS",
                     Creater = "system",
-                    Details = details
+                    OrderNo = "111",
+                    ProductionDate = now.ToString(),
+                    EffectiveDate = now.AddYears(1).ToString(),
+                    SerialNumber = item.CellBarcode,
+                    InboundOrderRowNo = item.Channel,
+                    Status = StockStatusEmun.缁勭洏鏆傚瓨.GetHashCode(),
+                }).ToList();
+
+                var bindRequest = new BindContainerRequest
+                {
+                    ContainerCode = stock?.TargetPalletNo,
+                    EquipmentCode = "STK-GROUP-001",
+                    ResourceCode = "STK-GROUP-001",
+                    LocalTime = now,
+                    OperationType = 0, // 0浠h〃缁勭洏
+                    ContainerSfcList = details.Select(d => new ContainerSfcItem
+                    {
+                        Sfc = d.SerialNumber,
+                        Location = d.InboundOrderRowNo.ToString(),
+                    }).ToList()
                 };
 
-                result = StockInfoService.Repository.AddData(entity, x => x.Details);
-                return result ? content.OK("缁勭洏鎴愬姛") : content.Error("缁勭洏澶辫触");
-            });
+                return await ExecuteWithinTransactionAsync(async () =>
+                {
+                    var existingStock = StockInfoService.Repository.QueryFirst(s => s.PalletCode == stock.TargetPalletNo);
+                    var result = false;
+                    if (existingStock != null)
+                    {
+                        details.ForEach(d => d.StockId = existingStock.Id);
+                        result = await StockInfoDetailService.Repository.AddDataAsync(details) > 0;
+                        return result ? content.OK("缁勭洏鎴愬姛") : content.Error("缁勭洏澶辫触");
+                    }
+
+                    var entity = new Dt_StockInfo
+                    {
+                        PalletCode = stock.TargetPalletNo,
+                        WarehouseId = stock.Roadway == "娉ㄦ恫缁勭洏鏈烘鎵�" ? (await _warehouseService.Db.Queryable<Dt_Warehouse>().FirstAsync(w => w.WarehouseCode == "GW1")).WarehouseId : 0,
+                        StockStatus = StockStatusEmun.缁勭洏鏆傚瓨.GetHashCode(),
+                        Creater = "system",
+                        Details = details
+                    };
+                    result = StockInfoService.Repository.AddData(entity, x => x.Details);
+                    if (!result) return content.Error("缁勭洏澶辫触");
+
+                    //var mesResult = _mesService.BindContainer(bindRequest);
+                    //if (mesResult == null || mesResult.Data == null || !mesResult.Data.IsSuccess)
+                    //{
+                    //    return content.Error($"缁勭洏鎴愬姛锛屼絾MES缁戝畾澶辫触: {mesResult?.Data?.Msg ?? mesResult?.ErrorMessage ?? "鏈煡閿欒"}");
+                    //}
+                    return content.OK("缁勭洏鎴愬姛");
+                });
+            }
+            catch (Exception ex)
+            {
+                return content.Error($"缁勭洏澶辫触: {ex.Message}");
+            }
         }
 
         /// <summary>
@@ -149,55 +192,98 @@
         public async Task<WebResponseContent> ChangePalletAsync(StockDTO stock)
         {
             WebResponseContent content = new WebResponseContent();
-            if (stock == null ||
-                string.IsNullOrWhiteSpace(stock.TargetPalletNo) ||
-                string.IsNullOrWhiteSpace(stock.SourcePalletNo) ||
-                string.Equals(stock.SourcePalletNo, stock.TargetPalletNo, StringComparison.OrdinalIgnoreCase))
+            try
             {
-                return content.Error("婧愭墭鐩樺彿涓庣洰鏍囨墭鐩樺彿鐩稿悓");
-            }
-
-            return await ExecuteWithinTransactionAsync(async () =>
-            {
-                var sourceStock = await StockInfoService.Repository.QueryDataNavFirstAsync(s => s.PalletCode == stock.SourcePalletNo);
-                if (sourceStock == null) return content.Error("婧愭墭鐩樹笉瀛樺湪");
-
-                var targetStock = StockInfoService.Repository.QueryFirst(s => s.PalletCode == stock.TargetPalletNo);
-                if (targetStock == null)
+                if (stock == null ||
+                    string.IsNullOrWhiteSpace(stock.TargetPalletNo) ||
+                    string.IsNullOrWhiteSpace(stock.SourcePalletNo) ||
+                    string.Equals(stock.SourcePalletNo, stock.TargetPalletNo, StringComparison.OrdinalIgnoreCase))
                 {
-                    var newStock = new Dt_StockInfo
-                    {
-                        PalletCode = stock.TargetPalletNo,
-                        WarehouseId = sourceStock.WarehouseId,
-                        StockStatus = StockStatusEmun.缁勭洏鏆傚瓨.GetHashCode(),
-                        Creater = "system",
-                    };
-
-                    var newId = StockInfoService.Repository.AddData(newStock);
-                    if (newId <= 0) return content.Error("鎹㈢洏澶辫触");
-
-                    targetStock = newStock;
-                    targetStock.Id = newId;
+                    return content.Error("婧愭墭鐩樺彿涓庣洰鏍囨墭鐩樺彿鐩稿悓");
                 }
 
-                var serialNumbers = stock.Details.Select(d => d.Channel).Distinct().ToList();
-                if (!serialNumbers.Any()) return content.Error("鏈壘鍒版湁鏁堢殑搴忓垪鍙�");
+                return await ExecuteWithinTransactionAsync(async () =>
+                {
+                    var sourceStock = await StockInfoService.Repository.QueryDataNavFirstAsync(s => s.PalletCode == stock.SourcePalletNo);
+                    if (sourceStock == null) return content.Error("婧愭墭鐩樹笉瀛樺湪");
 
-                var detailEntities = StockInfoDetailService.Repository.QueryData(
-                    d => d.StockId == sourceStock.Id && serialNumbers.Contains(d.InboundOrderRowNo));
-                if (!detailEntities.Any()) return content.Error("鏈壘鍒版湁鏁堢殑搴撳瓨鏄庣粏");
+                    var targetStock = StockInfoService.Repository.QueryFirst(s => s.PalletCode == stock.TargetPalletNo);
+                    if (targetStock == null)
+                    {
+                        var newStock = new Dt_StockInfo
+                        {
+                            PalletCode = stock.TargetPalletNo,
+                            WarehouseId = sourceStock.WarehouseId,
+                            StockStatus = StockStatusEmun.缁勭洏鏆傚瓨.GetHashCode(),
+                            Creater = "system",
+                        };
 
-                if (await StockInfoDetail_HtyService.Repository.AddDataAsync(CreateDetailHistory(detailEntities, "鎹㈢洏")) <= 0)
-                    return content.Error("鎹㈢洏鍘嗗彶璁板綍淇濆瓨澶辫触");
+                        var newId = StockInfoService.Repository.AddData(newStock);
+                        if (newId <= 0) return content.Error("鎹㈢洏澶辫触");
 
-                if (await StockInfo_HtyService.Repository.AddDataAsync(CreateStockHistory(new[] { sourceStock, targetStock }, "鎹㈢洏")) <= 0)
-                    return content.Error("鎹㈢洏鍘嗗彶璁板綍淇濆瓨澶辫触");
+                        targetStock = newStock;
+                        targetStock.Id = newId;
+                    }
 
-                detailEntities.ForEach(d => d.StockId = targetStock.Id);
-                var result = await StockInfoDetailService.Repository.UpdateDataAsync(detailEntities);
-                if (!result) return content.Error("鎹㈢洏澶辫触");
-                return content.OK("鎹㈢洏鎴愬姛");
-            });
+                    var serialNumbers = stock.Details.Select(d => d.Channel).Distinct().ToList();
+                    if (!serialNumbers.Any()) return content.Error("鏈壘鍒版湁鏁堢殑搴忓垪鍙�");
+
+                    var detailEntities = StockInfoDetailService.Repository.QueryData(
+                        d => d.StockId == sourceStock.Id && serialNumbers.Contains(d.InboundOrderRowNo));
+                    if (!detailEntities.Any()) return content.Error("鏈壘鍒版湁鏁堢殑搴撳瓨鏄庣粏");
+
+                    if (await StockInfoDetail_HtyService.Repository.AddDataAsync(CreateDetailHistory(detailEntities, "鎹㈢洏")) <= 0)
+                        return content.Error("鎹㈢洏鍘嗗彶璁板綍淇濆瓨澶辫触");
+
+                    if (await StockInfo_HtyService.Repository.AddDataAsync(CreateStockHistory(new[] { sourceStock, targetStock }, "鎹㈢洏")) <= 0)
+                        return content.Error("鎹㈢洏鍘嗗彶璁板綍淇濆瓨澶辫触");
+
+                    // 璋冪敤MES瑙g粦婧愭墭鐩樼數鑺�
+                    var unbindRequest = new UnBindContainerRequest
+                    {
+                        EquipmentCode = "STK-GROUP-001",
+                        ResourceCode = "STK-GROUP-001",
+                        LocalTime = DateTime.Now,
+                        ContainCode = stock.SourcePalletNo,
+                        SfcList = detailEntities.Select(d => d.SerialNumber).ToList()
+                    };
+                    var unbindResult = _mesService.UnBindContainer(unbindRequest);
+                    if (unbindResult == null || unbindResult.Data == null || !unbindResult.Data.IsSuccess)
+                    {
+                        return content.Error($"鎹㈢洏鎴愬姛锛屼絾MES瑙g粦澶辫触: {unbindResult?.Data?.Msg ?? unbindResult?.ErrorMessage ?? "鏈煡閿欒"}");
+                    }
+
+                    detailEntities.ForEach(d => d.StockId = targetStock.Id);
+                    var result = await StockInfoDetailService.Repository.UpdateDataAsync(detailEntities);
+                    if (!result) return content.Error("鎹㈢洏澶辫触");
+
+                    // 璋冪敤MES缁戝畾鐩爣鎵樼洏鐢佃姱
+                    var bindRequest = new BindContainerRequest
+                    {
+                        ContainerCode = stock.TargetPalletNo,
+                        EquipmentCode = "STK-GROUP-001",
+                        ResourceCode = "STK-GROUP-001",
+                        LocalTime = DateTime.Now,
+                        OperationType = 0,
+                        ContainerSfcList = detailEntities.Select(d => new ContainerSfcItem
+                        {
+                            Sfc = d.SerialNumber,
+                            Location = d.InboundOrderRowNo.ToString()
+                        }).ToList()
+                    };
+                    var bindResult = _mesService.BindContainer(bindRequest);
+                    if (bindResult == null || bindResult.Data == null || !bindResult.Data.IsSuccess)
+                    {
+                        return content.Error($"鎹㈢洏鎴愬姛锛屼絾MES缁戝畾澶辫触: {bindResult?.Data?.Msg ?? bindResult?.ErrorMessage ?? "鏈煡閿欒"}");
+                    }
+
+                    return content.OK("鎹㈢洏鎴愬姛");
+                });
+            }
+            catch (Exception ex)
+            {
+                return content.Error($"鎹㈢洏澶辫触: {ex.Message}");
+            }
         }
 
         /// <summary>
@@ -206,37 +292,59 @@
         public async Task<WebResponseContent> SplitPalletAsync(StockDTO stock)
         {
             WebResponseContent content = new WebResponseContent();
-            if (stock == null || string.IsNullOrWhiteSpace(stock.SourcePalletNo))
-                return content.Error("婧愭墭鐩樺彿涓嶈兘涓虹┖");
-
-            return await ExecuteWithinTransactionAsync(async () =>
+            try
             {
-                var sourceStock = StockInfoService.Repository.QueryFirst(s => s.PalletCode == stock.SourcePalletNo);
-                if (sourceStock == null) return content.Error("婧愭墭鐩樹笉瀛樺湪");
+                if (stock == null || string.IsNullOrWhiteSpace(stock.SourcePalletNo))
+                    return content.Error("婧愭墭鐩樺彿涓嶈兘涓虹┖");
 
-                var serialNumbers = stock.Details.Select(d => d.CellBarcode).Distinct().ToList();
-                if (!serialNumbers.Any())
+                return await ExecuteWithinTransactionAsync(async () =>
                 {
-                    serialNumbers = sourceStock.Details
-                                                .Where(x => stock.Details.Any(d => d.Channel == x.InboundOrderRowNo))
-                                                .Select(x => x.SerialNumber)
-                                                .ToList();
-                }
+                    var sourceStock = StockInfoService.Repository.QueryFirst(s => s.PalletCode == stock.SourcePalletNo);
+                    if (sourceStock == null) return content.Error("婧愭墭鐩樹笉瀛樺湪");
 
-                var detailEntities = StockInfoDetailService.Repository.QueryData(
-                    d => d.StockId == sourceStock.Id && serialNumbers.Contains(d.SerialNumber));
-                if (!detailEntities.Any()) return content.Error("鏈壘鍒版湁鏁堢殑搴撳瓨鏄庣粏");
+                    var serialNumbers = stock.Details.Select(d => d.CellBarcode).Distinct().ToList();
+                    if (!serialNumbers.Any())
+                    {
+                        serialNumbers = sourceStock.Details
+                                                    .Where(x => stock.Details.Any(d => d.Channel == x.InboundOrderRowNo))
+                                                    .Select(x => x.SerialNumber)
+                                                    .ToList();
+                    }
 
-                if (await StockInfoDetail_HtyService.Repository.AddDataAsync(CreateDetailHistory(detailEntities, "鎷嗙洏")) <= 0)
-                    return content.Error("鎷嗙洏鍘嗗彶璁板綍淇濆瓨澶辫触");
+                    var detailEntities = StockInfoDetailService.Repository.QueryData(
+                        d => d.StockId == sourceStock.Id && serialNumbers.Contains(d.SerialNumber));
+                    if (!detailEntities.Any()) return content.Error("鏈壘鍒版湁鏁堢殑搴撳瓨鏄庣粏");
 
-                if (await StockInfo_HtyService.Repository.AddDataAsync(CreateStockHistory(new[] { sourceStock }, "鎷嗙洏")) <= 0)
-                    return content.Error("鎷嗙洏鍘嗗彶璁板綍淇濆瓨澶辫触");
+                    if (await StockInfoDetail_HtyService.Repository.AddDataAsync(CreateDetailHistory(detailEntities, "鎷嗙洏")) <= 0)
+                        return content.Error("鎷嗙洏鍘嗗彶璁板綍淇濆瓨澶辫触");
 
-                var result = await StockInfoDetailService.Repository.DeleteDataAsync(detailEntities);
-                if (!result) return content.Error("鎷嗙洏澶辫触");
-                return content.OK("鎷嗙洏鎴愬姛");
-            });
+                    if (await StockInfo_HtyService.Repository.AddDataAsync(CreateStockHistory(new[] { sourceStock }, "鎷嗙洏")) <= 0)
+                        return content.Error("鎷嗙洏鍘嗗彶璁板綍淇濆瓨澶辫触");
+
+                    // 璋冪敤MES瑙g粦鐢佃姱
+                    var unbindRequest = new UnBindContainerRequest
+                    {
+                        EquipmentCode = "STK-GROUP-001",
+                        ResourceCode = "STK-GROUP-001",
+                        LocalTime = DateTime.Now,
+                        ContainCode = stock.SourcePalletNo,
+                        SfcList = detailEntities.Select(d => d.SerialNumber).ToList()
+                    };
+                    var unbindResult = _mesService.UnBindContainer(unbindRequest);
+                    if (unbindResult == null || unbindResult.Data == null || !unbindResult.Data.IsSuccess)
+                    {
+                        return content.Error($"鎷嗙洏鎴愬姛锛屼絾MES瑙g粦澶辫触: {unbindResult?.Data?.Msg ?? unbindResult?.ErrorMessage ?? "鏈煡閿欒"}");
+                    }
+
+                    var result = await StockInfoDetailService.Repository.DeleteDataAsync(detailEntities);
+                    if (!result) return content.Error("鎷嗙洏澶辫触");
+                    return content.OK("鎷嗙洏鎴愬姛");
+                });
+            }
+            catch (Exception ex)
+            {
+                return content.Error($"鎷嗙洏澶辫触: {ex.Message}");
+            }
         }
 
         /// <summary>

--
Gitblit v1.9.3