From 2e37035392c187b26a09a2c2edcc6133e96532cc Mon Sep 17 00:00:00 2001
From: kyy <3283105747@qq.com>
Date: 星期四, 04 九月 2025 15:57:15 +0800
Subject: [PATCH] 1、收料通知单接口 2、采购订单接口加委外订单分录内码

---
 MES.Service/service/BasicData/MesItemsManager.cs |   85 +++++++++++++++++++++---------------------
 1 files changed, 42 insertions(+), 43 deletions(-)

diff --git a/MES.Service/service/BasicData/MesItemsManager.cs b/MES.Service/service/BasicData/MesItemsManager.cs
index 301b4f8..7ba11c5 100644
--- a/MES.Service/service/BasicData/MesItemsManager.cs
+++ b/MES.Service/service/BasicData/MesItemsManager.cs
@@ -44,39 +44,15 @@
 
     public bool SaveList(List<ErpItems> items)
     {
-        var list = items.Select(GetMesItems).ToList();
-        var groupBy = list.GroupBy(s => s.Type)
-            .ToDictionary(g => g.Key, g => g.ToList());
-
-        return UseTransaction(db =>
+        if (items == null || !items.Any())
         {
-            foreach (var itemGroup in groupBy)
-                switch (itemGroup.Key)
-                {
-                    case "0":
-                        if (!UpdateItemStatusBatch(db, itemGroup.Value, "A"))
-                            throw new NotImplementedException("鍚敤澶辫触");
-                        break;
-                    case "1":
-                        if (!UpdateItemStatusBatch(db, itemGroup.Value, "B"))
-                            throw new NotImplementedException("绂佺敤澶辫触");
-                        break;
-                    case "3":
-                        if (!DeleteItemBatch(db, itemGroup.Value))
-                            throw new NotImplementedException("鍒犻櫎澶辫触");
-                        break;
-                    case "2":
-                    case "4":
-                        if (!InsertOrUpdateBatch(db, itemGroup.Value))
-                            throw new NotImplementedException("鍚屾澶辫触");
-                        break;
-                    default:
-                        throw new ArgumentNullException(
-                            $"type娌℃湁{itemGroup.Key}杩欎釜绫诲瀷鐨勫弬鏁�");
-                }
-
-            return 1;
-        }) > 0;
+            Console.WriteLine("璀﹀憡: 浼犲叆鐨勭墿鏂欏垪琛ㄤ负绌�");
+            return false;
+        }
+        
+        // 閫愭潯澶勭悊锛屽叏閮ㄦ垚鍔熸墠杩斿洖true锛堜簨鍔″唴鎵归噺澶勭悊鏇翠紭锛屾澶勪繚鎸佸師鏈夐�昏緫锛�
+        var result = items.Select(Save).ToList();
+        return result.All(b => b);
     }
 
     private bool UpdateItemStatus(SqlSugarScope db, decimal itemId,
@@ -113,25 +89,37 @@
 
     private MesItems GetMesItems(ErpItems item)
     {
-        return new MesItems
+        // var id = string.IsNullOrEmpty(item.Id)
+        //     ? DateTimeOffset.UtcNow.ToUnixTimeSeconds()
+        //     : long.Parse(item.Id);
+        var entity = new MesItems
         {
-            Id = string.IsNullOrEmpty(item.Id)
-                ? DateTimeOffset.UtcNow.ToUnixTimeSeconds()
-                : long.Parse(item.Id),
+            // Id = id,
             Type = item.Type,
             ItemNo = item.FNumber,
             ItemName = item.FName,
             ItemModel = item.FSpecification,
             ItemUnit = item.FBaseUnitId,
-            Lowlimit = !string.IsNullOrEmpty(item.FSafeStock) ? Convert.ToDecimal(item.FSafeStock) : null,
-            Highlimit = !string.IsNullOrEmpty(item.FMaxStock) ? Convert.ToDecimal(item.FMaxStock) : null,
-            PrdPack = !string.IsNullOrEmpty(item.FMinPackCount) ? Convert.ToDecimal(item.FMinPackCount) : null,
+            // Lowlimit = !string.IsNullOrEmpty(item.FSafeStock)
+            //     ? Convert.ToDecimal(item.FSafeStock)
+            //     : null,
+            // Highlimit = !string.IsNullOrEmpty(item.FMaxStock)
+            //     ? Convert.ToDecimal(item.FMaxStock)
+            //     : null,
+            // PrdPack = !string.IsNullOrEmpty(item.FMinPackCount)
+            //     ? Convert.ToDecimal(item.FMinPackCount)
+            //     : null,
             DepotCode = item.FStockId,
             Fmaterialgroup = item.FMaterialGroup,
             Remarks = item.FDescription,
-            Ffinishreceiptoverrate = !string.IsNullOrEmpty(item.FFinishReceiptOverRate) ? Convert.ToInt32(item.FFinishReceiptOverRate) : null,
+            // Ffinishreceiptoverrate =
+            //     !string.IsNullOrEmpty(item.FFinishReceiptOverRate)
+            //         ? Convert.ToInt32(item.FFinishReceiptOverRate)
+            //         : null,
             Fissuetype = item.FIssueType,
-            Fisbatchmanage = !string.IsNullOrEmpty(item.FIsBatchManage) ? Convert.ToInt32(item.FIsBatchManage) : null,
+            // Fisbatchmanage = !string.IsNullOrEmpty(item.FIsBatchManage)
+            //     ? Convert.ToInt32(item.FIsBatchManage)
+            //     : null,
             Fpurchaserid = item.FPurchaserId,
             Fpurchaseunitid = item.FPurchaseUnitId,
             Storeunit = item.FStoreUnitID,
@@ -150,13 +138,24 @@
             LossPercent = item.FLOSSPERCENT,
             MnemonicCode = item.FMnemonicCode,
             ExpPeriod = item.FExpPeriod,
-            EItemId = !string.IsNullOrEmpty(item.Id) ? long.Parse(item.Id) : null,
-            ItemId = !string.IsNullOrEmpty(item.Id) ? long.Parse(item.Id) : null,
+            // EItemId = id,
+            // ItemId = id,
             LastupdateDate = DateTime.Now,
             CreateDate = DateTime.Now,
             Company = "1000",
             Factory = "1000"
         };
+
+        var mesItems = Db.Queryable<MesItems>()
+            .Where(s => s.ItemNo == entity.ItemNo)
+            .First();
+
+        if (mesItems != null)
+        {
+            entity.Id = mesItems.Id;
+        }
+
+        return entity;
     }
 
     private bool UpdateItemStatusBatch(SqlSugarScope db,

--
Gitblit v1.9.3