From 91f6c7e052185512e683ae13263fd1d1ebdf724e Mon Sep 17 00:00:00 2001
From: sjz <1240968267@qq.com>
Date: 星期三, 05 三月 2025 13:59:03 +0800
Subject: [PATCH] 调取PLM接口 返回文件流给前端

---
 MESApplication/bin/Release/net8.0/MESApplication.exe                 |    0 
 MESApplication/bin/Release/net8.0/publish/MESApplication.pdb         |    0 
 MESApplication/bin/Debug/net8.0/MES.Service.pdb                      |    0 
 MESApplication/bin/Debug/net8.0/MESApplication.dll                   |    0 
 MESApplication/bin/Release/net8.0/MESApplication.xml                 |  108 +++++++++++++++++++++
 MESApplication/Properties/PublishProfiles/FolderProfile1.pubxml.user |    2 
 MES.Service/bin/Debug/net8.0/MES.Service.dll                         |    0 
 MESApplication/bin/Release/net8.0/publish/MESApplication.dll         |    0 
 MES.Service/service/WomcaaWWManager.cs                               |   48 ++++++++-
 MESApplication/bin/Debug/net8.0/MES.Service.dll                      |    0 
 MESApplication/bin/Debug/net8.0/MESApplication.pdb                   |    0 
 MESApplication/bin/Release/net8.0/MES.Service.dll                    |    0 
 MESApplication/bin/Release/net8.0/MESApplication.dll                 |    0 
 MESApplication/bin/Debug/net8.0/MESApplication.exe                   |    0 
 MESApplication/bin/Release/net8.0/publish/MES.Service.pdb            |    0 
 MES.Service/bin/Release/net8.0/MES.Service.dll                       |    0 
 MESApplication/bin/Release/net8.0/MES.Service.pdb                    |    0 
 MESApplication/bin/Release/net8.0/publish/MESApplication.exe         |    0 
 MES.Service/bin/Release/net8.0/MES.Service.pdb                       |    0 
 MESApplication/bin/Release/net8.0/MESApplication.pdb                 |    0 
 MES.Service/bin/Debug/net8.0/MES.Service.pdb                         |    0 
 MESApplication/bin/Release/net8.0/publish/MES.Service.dll            |    0 
 MESApplication/bin/Release/net8.0/publish/MESApplication.xml         |  108 +++++++++++++++++++++
 23 files changed, 259 insertions(+), 7 deletions(-)

diff --git a/MES.Service/bin/Debug/net8.0/MES.Service.dll b/MES.Service/bin/Debug/net8.0/MES.Service.dll
index a2a587b..323a6b7 100644
--- a/MES.Service/bin/Debug/net8.0/MES.Service.dll
+++ b/MES.Service/bin/Debug/net8.0/MES.Service.dll
Binary files differ
diff --git a/MES.Service/bin/Debug/net8.0/MES.Service.pdb b/MES.Service/bin/Debug/net8.0/MES.Service.pdb
index d931bc6..df0f089 100644
--- a/MES.Service/bin/Debug/net8.0/MES.Service.pdb
+++ b/MES.Service/bin/Debug/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MES.Service/bin/Release/net8.0/MES.Service.dll b/MES.Service/bin/Release/net8.0/MES.Service.dll
index 57c11af..fdf22ba 100644
--- a/MES.Service/bin/Release/net8.0/MES.Service.dll
+++ b/MES.Service/bin/Release/net8.0/MES.Service.dll
Binary files differ
diff --git a/MES.Service/bin/Release/net8.0/MES.Service.pdb b/MES.Service/bin/Release/net8.0/MES.Service.pdb
index 433a983..04e23dd 100644
--- a/MES.Service/bin/Release/net8.0/MES.Service.pdb
+++ b/MES.Service/bin/Release/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MES.Service/service/WomcaaWWManager.cs b/MES.Service/service/WomcaaWWManager.cs
index 18521e4..0b52483 100644
--- a/MES.Service/service/WomcaaWWManager.cs
+++ b/MES.Service/service/WomcaaWWManager.cs
@@ -30,17 +30,55 @@
             switch (womErpCaa.Type)
             {
                 case "3":
-                    return UpdateData(db, mesWomcaa, mesWomcabs) ? 1 : 0;
+                    return DeleteData(db, mesWomcaa, mesWomcabs) ? 1 : 0;
                 case "1":
                 case "2":
                 case "4":
-                case "5":
                     return SaveOrUpdateDataWw(db, mesWomcaa, mesWomcabs) ? 1 : 0;
+                case "5":
+                    return UpdateData(db, mesWomcaa, mesWomcabs) ? 1 : 0;
                 default:
                     throw new NotImplementedException(
                         $"type娌℃湁{womErpCaa.Type}杩欎釜绫诲瀷");
             }
         }) > 0;
+    }
+
+    private bool UpdateData(SqlSugarScope db, Womcaa mesWomcaa, List<Womcab> mesWomcabs)
+    {
+        if (mesWomcaa.Id != null)
+        {
+            base.DeleteById(mesWomcaa.Id);
+        }
+        if (mesWomcabs.Count > 0)
+        {
+            db.Deleteable<Womcab>().Where(s => s.Eid == mesWomcaa.Erpid).ExecuteCommand();
+        }
+        var orUpdate = base.Insert(mesWomcaa);
+        var baOrUpdate = _womcabWWManager.InsertRange(mesWomcabs);
+        if (orUpdate && baOrUpdate)
+        {
+            //瀹氫箟杈撳叆鍙傛暟
+            var inputParam1 = new SugarParameter("P_WORK_NO", mesWomcaa.Caa001);
+            // 瀹氫箟杈撳嚭鍙傛暟
+            var outParam1 = new SugarParameter("c_Result", null, true);
+            var outParam2 = new SugarParameter("C_MSG", null, true);
+            // 浣跨敤 SqlSugar 鎵ц瀛樺偍杩囩▼
+            Db.Ado.ExecuteCommand("BEGIN PRC_UPDATE_DAA(:P_WORK_NO,:c_Result,:C_MSG); END;", inputParam1, outParam1, outParam2);
+            // 鑾峰彇杈撳嚭鍙傛暟鐨勫��
+            int result = int.Parse((string)outParam1.Value);
+            string message = outParam2.Value == DBNull.Value ? string.Empty : (string)outParam2.Value;
+            if (result == 1)
+            {
+                //瀛樺偍杩囩▼澶辫触鍒欎簨鍔¤繘琛屽洖婊�
+                db.Ado.RollbackTran();
+                throw new Exception(message);
+            }
+            // 鎻愪氦浜嬪姟
+            db.Ado.CommitTran();
+            return true;
+        }
+        throw new NotImplementedException("鎻掑叆鎴栨洿鏂板け璐�");
     }
 
     private bool SaveOrUpdateDataWw(SqlSugarScope db, Womcaa mesWomcaa, List<Womcab> mesWomcabss)
@@ -56,13 +94,11 @@
         throw new NotImplementedException("鎻掑叆鎴栨洿鏂板け璐�");
     }
 
-    private bool UpdateData(SqlSugarScope db, Womcaa mesWomcaa,List<Womcab> mesWomcabs)
+    private bool DeleteData(SqlSugarScope db, Womcaa mesWomcaa,List<Womcab> mesWomcabs)
     {
         var decimals = mesWomcabs.Select(s => s.Id).ToArray();
         var update = base.DeleteById(mesWomcaa.Id);
-        var insertOrUpdate = db
-            .Deleteable<Womcab>().In(decimals)
-            .ExecuteCommand() > 0;
+        var insertOrUpdate = db.Deleteable<Womcab>().In(decimals).ExecuteCommand() > 0;
 
         if (update && insertOrUpdate) return true;
         throw new NotImplementedException("鏇存柊澶辫触");
diff --git a/MESApplication/Properties/PublishProfiles/FolderProfile1.pubxml.user b/MESApplication/Properties/PublishProfiles/FolderProfile1.pubxml.user
index 52a04c5..a921662 100644
--- a/MESApplication/Properties/PublishProfiles/FolderProfile1.pubxml.user
+++ b/MESApplication/Properties/PublishProfiles/FolderProfile1.pubxml.user
@@ -5,7 +5,7 @@
 <Project>
   <PropertyGroup>
     <_PublishTargetUrl>E:\Tool\YC\PDA_NEW\StandardPda\MESApplication\bin\Release\net8.0\publish\</_PublishTargetUrl>
-    <History>True|2025-02-09T10:26:31.5704633Z||;True|2025-02-09T18:12:48.0627520+08:00||;True|2025-02-09T18:05:44.6269171+08:00||;True|2025-02-09T17:57:50.8088587+08:00||;True|2025-02-09T17:43:40.4527367+08:00||;True|2025-02-08T10:29:31.2831957+08:00||;True|2025-02-06T18:18:38.6934851+08:00||;True|2025-02-05T17:42:20.2913884+08:00||;True|2025-02-05T10:37:26.5357481+08:00||;True|2025-01-25T20:55:17.0693465+08:00||;True|2025-01-25T20:51:27.6569448+08:00||;True|2025-01-25T20:45:43.6804480+08:00||;True|2025-01-25T20:45:33.9933370+08:00||;True|2025-01-25T20:28:04.7328972+08:00||;True|2025-01-25T14:17:14.8944582+08:00||;True|2025-01-25T14:17:05.2862379+08:00||;True|2024-12-28T09:28:40.2490285+08:00||;True|2024-12-28T09:24:13.6358072+08:00||;True|2024-12-23T11:27:56.7279470+08:00||;True|2024-12-18T10:54:17.6468925+08:00||;True|2024-12-17T11:19:11.4771193+08:00||;True|2024-12-14T16:22:42.4775142+08:00||;True|2024-12-14T14:32:08.4819570+08:00||;True|2024-12-14T14:10:38.1117540+08:00||;True|2024-12-03T17:08:31.5171260+08:00||;True|2024-12-03T16:54:32.2048138+08:00||;True|2024-12-02T17:10:38.7349786+08:00||;True|2024-12-02T17:10:29.2341240+08:00||;True|2024-12-02T16:49:27.8008227+08:00||;True|2024-12-02T16:08:50.3962240+08:00||;True|2024-12-02T15:55:08.5145697+08:00||;True|2024-11-27T10:14:16.9233553+08:00||;True|2024-11-19T13:32:20.4340463+08:00||;True|2024-11-13T14:14:38.1563187+08:00||;True|2024-10-30T08:29:42.5209480+08:00||;True|2024-04-03T18:25:07.7342086+08:00||;True|2024-04-02T13:51:16.7249454+08:00||;True|2024-04-01T15:41:41.0497757+08:00||;True|2024-04-01T15:32:18.6184478+08:00||;True|2024-04-01T10:51:21.6480746+08:00||;True|2024-04-01T08:59:32.5904066+08:00||;True|2024-03-30T09:43:11.6575865+08:00||;True|2024-03-30T09:42:27.3595089+08:00||;True|2024-03-29T13:50:20.3539700+08:00||;True|2024-03-28T09:14:58.1112867+08:00||;True|2024-03-22T10:26:07.1214007+08:00||;True|2024-03-22T10:21:08.6344551+08:00||;True|2024-03-19T15:13:41.3801414+08:00||;True|2024-03-15T10:49:50.0658357+08:00||;True|2024-03-12T14:53:58.8578963+08:00||;True|2024-03-12T13:07:33.5611497+08:00||;True|2024-03-11T13:00:04.5285501+08:00||;True|2024-03-09T14:11:27.1982745+08:00||;True|2024-03-09T14:08:28.7221723+08:00||;True|2024-03-07T10:33:08.4880656+08:00||;True|2024-03-06T10:14:43.2629071+08:00||;True|2024-03-05T09:45:52.8808832+08:00||;True|2024-03-02T14:22:27.0834070+08:00||;True|2024-03-02T12:53:22.8217970+08:00||;True|2024-03-02T12:51:11.4787600+08:00||;True|2024-03-01T13:47:20.6425791+08:00||;</History>
+    <History>True|2025-02-21T01:15:23.1767574Z||;True|2025-02-19T14:32:33.8569697+08:00||;True|2025-02-09T18:26:31.5704633+08:00||;True|2025-02-09T18:12:48.0627520+08:00||;True|2025-02-09T18:05:44.6269171+08:00||;True|2025-02-09T17:57:50.8088587+08:00||;True|2025-02-09T17:43:40.4527367+08:00||;True|2025-02-08T10:29:31.2831957+08:00||;True|2025-02-06T18:18:38.6934851+08:00||;True|2025-02-05T17:42:20.2913884+08:00||;True|2025-02-05T10:37:26.5357481+08:00||;True|2025-01-25T20:55:17.0693465+08:00||;True|2025-01-25T20:51:27.6569448+08:00||;True|2025-01-25T20:45:43.6804480+08:00||;True|2025-01-25T20:45:33.9933370+08:00||;True|2025-01-25T20:28:04.7328972+08:00||;True|2025-01-25T14:17:14.8944582+08:00||;True|2025-01-25T14:17:05.2862379+08:00||;True|2024-12-28T09:28:40.2490285+08:00||;True|2024-12-28T09:24:13.6358072+08:00||;True|2024-12-23T11:27:56.7279470+08:00||;True|2024-12-18T10:54:17.6468925+08:00||;True|2024-12-17T11:19:11.4771193+08:00||;True|2024-12-14T16:22:42.4775142+08:00||;True|2024-12-14T14:32:08.4819570+08:00||;True|2024-12-14T14:10:38.1117540+08:00||;True|2024-12-03T17:08:31.5171260+08:00||;True|2024-12-03T16:54:32.2048138+08:00||;True|2024-12-02T17:10:38.7349786+08:00||;True|2024-12-02T17:10:29.2341240+08:00||;True|2024-12-02T16:49:27.8008227+08:00||;True|2024-12-02T16:08:50.3962240+08:00||;True|2024-12-02T15:55:08.5145697+08:00||;True|2024-11-27T10:14:16.9233553+08:00||;True|2024-11-19T13:32:20.4340463+08:00||;True|2024-11-13T14:14:38.1563187+08:00||;True|2024-10-30T08:29:42.5209480+08:00||;True|2024-04-03T18:25:07.7342086+08:00||;True|2024-04-02T13:51:16.7249454+08:00||;True|2024-04-01T15:41:41.0497757+08:00||;True|2024-04-01T15:32:18.6184478+08:00||;True|2024-04-01T10:51:21.6480746+08:00||;True|2024-04-01T08:59:32.5904066+08:00||;True|2024-03-30T09:43:11.6575865+08:00||;True|2024-03-30T09:42:27.3595089+08:00||;True|2024-03-29T13:50:20.3539700+08:00||;True|2024-03-28T09:14:58.1112867+08:00||;True|2024-03-22T10:26:07.1214007+08:00||;True|2024-03-22T10:21:08.6344551+08:00||;True|2024-03-19T15:13:41.3801414+08:00||;True|2024-03-15T10:49:50.0658357+08:00||;True|2024-03-12T14:53:58.8578963+08:00||;True|2024-03-12T13:07:33.5611497+08:00||;True|2024-03-11T13:00:04.5285501+08:00||;True|2024-03-09T14:11:27.1982745+08:00||;True|2024-03-09T14:08:28.7221723+08:00||;True|2024-03-07T10:33:08.4880656+08:00||;True|2024-03-06T10:14:43.2629071+08:00||;True|2024-03-05T09:45:52.8808832+08:00||;True|2024-03-02T14:22:27.0834070+08:00||;True|2024-03-02T12:53:22.8217970+08:00||;True|2024-03-02T12:51:11.4787600+08:00||;True|2024-03-01T13:47:20.6425791+08:00||;</History>
     <LastFailureDetails />
   </PropertyGroup>
 </Project>
\ No newline at end of file
diff --git a/MESApplication/bin/Debug/net8.0/MES.Service.dll b/MESApplication/bin/Debug/net8.0/MES.Service.dll
index a2a587b..323a6b7 100644
--- a/MESApplication/bin/Debug/net8.0/MES.Service.dll
+++ b/MESApplication/bin/Debug/net8.0/MES.Service.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MES.Service.pdb b/MESApplication/bin/Debug/net8.0/MES.Service.pdb
index d931bc6..df0f089 100644
--- a/MESApplication/bin/Debug/net8.0/MES.Service.pdb
+++ b/MESApplication/bin/Debug/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MESApplication.dll b/MESApplication/bin/Debug/net8.0/MESApplication.dll
index fed2aee..5f3079d 100644
--- a/MESApplication/bin/Debug/net8.0/MESApplication.dll
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.dll
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MESApplication.exe b/MESApplication/bin/Debug/net8.0/MESApplication.exe
index 1019d54..dcb4e2c 100644
--- a/MESApplication/bin/Debug/net8.0/MESApplication.exe
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.exe
Binary files differ
diff --git a/MESApplication/bin/Debug/net8.0/MESApplication.pdb b/MESApplication/bin/Debug/net8.0/MESApplication.pdb
index a5eacaf..d5942ba 100644
--- a/MESApplication/bin/Debug/net8.0/MESApplication.pdb
+++ b/MESApplication/bin/Debug/net8.0/MESApplication.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MES.Service.dll b/MESApplication/bin/Release/net8.0/MES.Service.dll
index 57c11af..fdf22ba 100644
--- a/MESApplication/bin/Release/net8.0/MES.Service.dll
+++ b/MESApplication/bin/Release/net8.0/MES.Service.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MES.Service.pdb b/MESApplication/bin/Release/net8.0/MES.Service.pdb
index 433a983..04e23dd 100644
--- a/MESApplication/bin/Release/net8.0/MES.Service.pdb
+++ b/MESApplication/bin/Release/net8.0/MES.Service.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.dll b/MESApplication/bin/Release/net8.0/MESApplication.dll
index e8361b1..4d60230 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.dll
+++ b/MESApplication/bin/Release/net8.0/MESApplication.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.exe b/MESApplication/bin/Release/net8.0/MESApplication.exe
index 700d0b3..dcb4e2c 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.exe
+++ b/MESApplication/bin/Release/net8.0/MESApplication.exe
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.pdb b/MESApplication/bin/Release/net8.0/MESApplication.pdb
index e6bb0a1..a422024 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.pdb
+++ b/MESApplication/bin/Release/net8.0/MESApplication.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/MESApplication.xml b/MESApplication/bin/Release/net8.0/MESApplication.xml
index 86c6a4f..086076f 100644
--- a/MESApplication/bin/Release/net8.0/MESApplication.xml
+++ b/MESApplication/bin/Release/net8.0/MESApplication.xml
@@ -462,6 +462,102 @@
             </summary>
             <returns></returns>
         </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.Save(MES.Service.Dto.webApi.SaleDeliveryNotice)">
+            <summary>
+                鍗曟潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.SaveList(System.Collections.Generic.List{MES.Service.Dto.webApi.SaleDeliveryNotice})">
+            <summary>
+                澶氭潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.GetList">
+            <summary>
+                鑾峰彇鎵�鏈�
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.GetById(System.Int32)">
+            <summary>
+                鏍规嵁涓婚敭鑾峰彇
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.DeleteByIds(System.Object[])">
+            <summary>
+                鏍规嵁涓婚敭鍒犻櫎
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.Add(MES.Service.Modes.SalesDeliveryNotice)">
+            <summary>
+                娣诲姞
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.InsertReturnIdentity(MES.Service.Modes.SalesDeliveryNotice)">
+            <summary>
+                娣诲姞杩斿洖鑷
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.Update(MES.Service.Modes.SalesDeliveryNotice)">
+            <summary>
+                淇敼
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.GetList">
+            <summary>
+                鑾峰彇鎵�鏈�
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.GetById(System.Int32)">
+            <summary>
+                鏍规嵁涓婚敭鑾峰彇
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.DeleteByIds(System.Object[])">
+            <summary>
+                鏍规嵁涓婚敭鍒犻櫎
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.Add(MES.Service.Modes.SalesDeliveryNoticeDetail)">
+            <summary>
+                娣诲姞
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.InsertReturnIdentity(MES.Service.Modes.SalesDeliveryNoticeDetail)">
+            <summary>
+                娣诲姞杩斿洖鑷
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.Update(MES.Service.Modes.SalesDeliveryNoticeDetail)">
+            <summary>
+                淇敼
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesOrderController.Save(MES.Service.Dto.webApi.SalesOrders)">
+            <summary>
+                鍗曟潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesOrderController.SaveList(System.Collections.Generic.List{MES.Service.Dto.webApi.SalesOrders})">
+            <summary>
+                澶氭潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
         <member name="M:MESApplication.Controllers.BasicData.SalesOrderController.GetList">
             <summary>
                 鑾峰彇鎵�鏈�
@@ -534,6 +630,18 @@
             </summary>
             <returns></returns>
         </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesReturnNoticeController.Save(MES.Service.Dto.webApi.SaleReturnNotice)">
+            <summary>
+                鍗曟潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesReturnNoticeController.SaveList(System.Collections.Generic.List{MES.Service.Dto.webApi.SaleReturnNotice})">
+            <summary>
+                澶氭潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
         <member name="M:MESApplication.Controllers.BasicData.SalesReturnNoticeController.GetList">
             <summary>
                 鑾峰彇鎵�鏈�
diff --git a/MESApplication/bin/Release/net8.0/publish/MES.Service.dll b/MESApplication/bin/Release/net8.0/publish/MES.Service.dll
index 57c11af..fdf22ba 100644
--- a/MESApplication/bin/Release/net8.0/publish/MES.Service.dll
+++ b/MESApplication/bin/Release/net8.0/publish/MES.Service.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb b/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb
index 433a983..04e23dd 100644
--- a/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb
+++ b/MESApplication/bin/Release/net8.0/publish/MES.Service.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.dll b/MESApplication/bin/Release/net8.0/publish/MESApplication.dll
index e8361b1..4d60230 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.dll
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.dll
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.exe b/MESApplication/bin/Release/net8.0/publish/MESApplication.exe
index 700d0b3..dcb4e2c 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.exe
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.exe
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb b/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb
index e6bb0a1..a422024 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.pdb
Binary files differ
diff --git a/MESApplication/bin/Release/net8.0/publish/MESApplication.xml b/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
index 86c6a4f..086076f 100644
--- a/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
+++ b/MESApplication/bin/Release/net8.0/publish/MESApplication.xml
@@ -462,6 +462,102 @@
             </summary>
             <returns></returns>
         </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.Save(MES.Service.Dto.webApi.SaleDeliveryNotice)">
+            <summary>
+                鍗曟潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.SaveList(System.Collections.Generic.List{MES.Service.Dto.webApi.SaleDeliveryNotice})">
+            <summary>
+                澶氭潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.GetList">
+            <summary>
+                鑾峰彇鎵�鏈�
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.GetById(System.Int32)">
+            <summary>
+                鏍规嵁涓婚敭鑾峰彇
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.DeleteByIds(System.Object[])">
+            <summary>
+                鏍规嵁涓婚敭鍒犻櫎
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.Add(MES.Service.Modes.SalesDeliveryNotice)">
+            <summary>
+                娣诲姞
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.InsertReturnIdentity(MES.Service.Modes.SalesDeliveryNotice)">
+            <summary>
+                娣诲姞杩斿洖鑷
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeController.Update(MES.Service.Modes.SalesDeliveryNotice)">
+            <summary>
+                淇敼
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.GetList">
+            <summary>
+                鑾峰彇鎵�鏈�
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.GetById(System.Int32)">
+            <summary>
+                鏍规嵁涓婚敭鑾峰彇
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.DeleteByIds(System.Object[])">
+            <summary>
+                鏍规嵁涓婚敭鍒犻櫎
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.Add(MES.Service.Modes.SalesDeliveryNoticeDetail)">
+            <summary>
+                娣诲姞
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.InsertReturnIdentity(MES.Service.Modes.SalesDeliveryNoticeDetail)">
+            <summary>
+                娣诲姞杩斿洖鑷
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesDeliveryNoticeDetailController.Update(MES.Service.Modes.SalesDeliveryNoticeDetail)">
+            <summary>
+                淇敼
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesOrderController.Save(MES.Service.Dto.webApi.SalesOrders)">
+            <summary>
+                鍗曟潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesOrderController.SaveList(System.Collections.Generic.List{MES.Service.Dto.webApi.SalesOrders})">
+            <summary>
+                澶氭潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
         <member name="M:MESApplication.Controllers.BasicData.SalesOrderController.GetList">
             <summary>
                 鑾峰彇鎵�鏈�
@@ -534,6 +630,18 @@
             </summary>
             <returns></returns>
         </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesReturnNoticeController.Save(MES.Service.Dto.webApi.SaleReturnNotice)">
+            <summary>
+                鍗曟潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
+        <member name="M:MESApplication.Controllers.BasicData.SalesReturnNoticeController.SaveList(System.Collections.Generic.List{MES.Service.Dto.webApi.SaleReturnNotice})">
+            <summary>
+                澶氭潯涓昏〃鏁版嵁淇濆瓨鎿嶄綔
+            </summary>
+            <returns></returns>
+        </member>
         <member name="M:MESApplication.Controllers.BasicData.SalesReturnNoticeController.GetList">
             <summary>
                 鑾峰彇鎵�鏈�

--
Gitblit v1.9.3