From d5fe80c5cb7dc0b209d8fea9faa84c7ca5b20324 Mon Sep 17 00:00:00 2001
From: Admin <Admin@ADMIN>
Date: 星期五, 16 一月 2026 16:07:18 +0800
Subject: [PATCH] 出入库移库完成

---
 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockInfoService.cs |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockInfoService.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockInfoService.cs"
index 339d933..c743093 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockInfoService.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockInfoService.cs"
@@ -1,4 +1,6 @@
 锘縰sing AutoMapper;
+using WIDESEA_Common.StockEnum;
+using WIDESEA_Core;
 using WIDESEA_Core.BaseRepository;
 using WIDESEA_Core.BaseServices;
 using WIDESEA_IStockService;
@@ -17,5 +19,25 @@
             _mapper = mapper;
         }
 
+        /*public WebResponseContent AddStockInfo(string PalletCode, int PalletType, int WarehouseId)
+        {
+            WebResponseContent webResponse=new WebResponseContent();
+            try
+            {
+                Dt_StockInfo dt_StockInfo = new Dt_StockInfo();
+                dt_StockInfo.PalletCode = PalletCode;
+                dt_StockInfo.PalletType = PalletType;
+                dt_StockInfo.WarehouseId = WarehouseId;
+                dt_StockInfo.StockStatus = (int)StockStatusEmun.鍏ュ簱涓�;
+                dt_StockInfo.Creater = "MWS";
+                dt_StockInfo.CreateDate = DateTime.Now;
+                BaseDal.AddData(dt_StockInfo);
+                return webResponse.OK();
+            }
+            catch (Exception ex)
+            {
+                return webResponse.Error($"搴撳瓨娣诲姞閿欒锛氬師鍥狅細{ex.Message}");
+            }
+        }*/
     }
 }

--
Gitblit v1.9.3