From 826e5950faf61ffa8d6442b1e17f98ffd67d26de Mon Sep 17 00:00:00 2001
From: Administrator <Administrator@DESKTOP-5BIMHQ3>
Date: 星期二, 25 六月 2024 08:17:18 +0800
Subject: [PATCH] 修改问题

---
 Wms/Wms/Controllers/UpApiController.cs |  136 ++++++++++++++++++++++++++++++++++++--------
 1 files changed, 110 insertions(+), 26 deletions(-)

diff --git a/Wms/Wms/Controllers/UpApiController.cs b/Wms/Wms/Controllers/UpApiController.cs
index 7a4852e..c1093d8 100644
--- a/Wms/Wms/Controllers/UpApiController.cs
+++ b/Wms/Wms/Controllers/UpApiController.cs
@@ -33,8 +33,9 @@
         private readonly IStockCheckServer _stockCheckSvc;//鐩樼偣鍗昐vc 
         private readonly IProcurePlanServer _procurePlanSvc;//閲囪喘鍗昐vs
         private readonly IRcsServer _rcsserver;//RCS鐩稿叧浠诲姟
+        private readonly INoticeServer _noticeSvc;//浜屾ゼ鍗曟嵁鐩稿叧
 
-        public UpApiController(IOptions<ApiUrlConfig> setting,IExportNoticeServer exNoticeSvc,IArrivalNoticeServer arrivalNoticeServer,IStockCheckServer stockCheckSvc, IProcurePlanServer procurePlanSvc,IRcsServer rcsserver)
+        public UpApiController(IOptions<ApiUrlConfig> setting,IExportNoticeServer exNoticeSvc,IArrivalNoticeServer arrivalNoticeServer,IStockCheckServer stockCheckSvc, IProcurePlanServer procurePlanSvc,IRcsServer rcsserver, INoticeServer noticeSvc)
         {
             _config = setting.Value;
             _exNoticeSvc = exNoticeSvc;
@@ -42,7 +43,7 @@
             _stockCheckSvc = stockCheckSvc;
             _procurePlanSvc = procurePlanSvc;
             _rcsserver = rcsserver;
-
+            _noticeSvc = noticeSvc;
         }
         #endregion
 
@@ -403,24 +404,26 @@
             }
         }
 
-        //RCS鍙《
+        #region 浜屾ゼ涓氬姟
+        /// <summary>
+        /// RCS鍙《
+        /// </summary>
+        /// <param name="pallmsg"></param>
+        /// <returns></returns>
         [HttpPost]
         public IActionResult GetPalletNo(Pallnetmsg pallmsg)
         {
-            var Pallnet = "";
-            var locate = "";
-            var result = new ErpModel { Success = -1, Message = "",};
+            var result = new ErpModel { Success = -1, Message = "", };
             try
             {
-                if (pallmsg.lotno != null)
+                if (string.IsNullOrWhiteSpace(pallmsg.Location))
                 {
-                    _rcsserver.GetPalletNo(pallmsg.warehouseno, pallmsg.type, pallmsg.lotno, out Pallnet, out locate);
+                    result.Message = "鍙枡浣嶇疆涓虹┖锛�";
+                    return Ok(result);
                 }
-                else
-                {
-                    _rcsserver.GetPalletNo(pallmsg.warehouseno, pallmsg.type, out Pallnet, out locate);
-                }
-                
+                _rcsserver.GetPalletNo(pallmsg);
+
+
                 result.Success = 0;
                 result.Message = "鍙《鎴愬姛锛�";
                 return Ok(result);
@@ -431,15 +434,19 @@
                 return Ok(result);
             }
         }
-        //RCS鐢宠鍌ㄤ綅
+
+        /// <summary>
+        /// RCS鐢宠鍌ㄤ綅
+        /// </summary>
+        /// <param name="pallmsg"></param>
+        /// <returns></returns>
         [HttpPost]
         public IActionResult ApplyLocatNo(Pallnetmsg pallmsg)
         {
-            var lotno = "";
             var result = new ErpModel { Success = -1, Message = "" };
             try
             {
-                _rcsserver.ApplyLocatNo(pallmsg.palletno,pallmsg.type, out lotno);
+                _rcsserver.ApplyLocatNo(pallmsg);
                 result.Success = 0;
                 result.Message = "鐢宠鍌ㄤ綅鎴愬姛锛�";
                 return Ok(result);
@@ -452,29 +459,106 @@
             }
         }
 
-        //涓嬪彂璋冨害RCS浠诲姟
-        //RCS鐢宠鍌ㄤ綅
+        /// <summary>
+        /// 鍏ュ簱鍗曟嵁涓嬪彂
+        /// </summary>
+        /// <param name="model">鍏ュ簱鍗曚俊鎭�</param>
+        /// <returns></returns>
+        //[Authorize]
         [HttpPost]
-        public IActionResult genAgvSchedulingTask(AgvTask agvtask)
+        public IActionResult CreateAsnWork(AsnInfo model)
         {
-            var lotno = "";
-            var url = "";
-            genAgvSchedulingTaskRep chrep = new genAgvSchedulingTaskRep();
             var result = new ErpModel { Success = -1, Message = "" };
             try
             {
-                _rcsserver.genAgvSchedulingTask(agvtask,url,ref chrep);
-                result.Success = 0;
-                result.Message = "鐢宠鍌ㄤ綅鎴愬姛锛�";
+                /*var claimsIdentity = this.User.Identity as ClaimsIdentity;
+                if (claimsIdentity == null)
+                {
+                    throw new Exception("鏈幏鍙栧埌鐢ㄦ埛淇℃伅");
+                }
+                string UserId = claimsIdentity.FindFirst(ClaimTypes.Name)?.Value;
+                if (string.IsNullOrWhiteSpace(UserId))
+                {
+                    throw new Exception("鏈幏鍙栧埌鐢ㄦ埛淇℃伅");
+                }*/
+
+                result = _noticeSvc.CreateAsnWork(model);
+
                 return Ok(result);
             }
             catch (Exception e)
             {
-
                 result.Message = e.Message;
                 return Ok(result);
             }
         }
+
+        /// <summary>
+        /// 浠诲姟瀹屾垚鍙嶉
+        /// </summary>
+        /// <param name="model"></param>
+        /// <returns></returns>
+        [HttpPost]
+        public IActionResult RCSFinishTask(TaskModel model)
+        {
+            var result = new ErpModel { Success = -1, Message = "" };
+            try
+            {
+                /*var claimsIdentity = this.User.Identity as ClaimsIdentity;
+                if (claimsIdentity == null)
+                {
+                    throw new Exception("鏈幏鍙栧埌鐢ㄦ埛淇℃伅");
+                }
+                string UserId = claimsIdentity.FindFirst(ClaimTypes.Name)?.Value;
+                if (string.IsNullOrWhiteSpace(UserId))
+                {
+                    throw new Exception("鏈幏鍙栧埌鐢ㄦ埛淇℃伅");
+                }*/
+
+                result = _noticeSvc.RCSFinishTask(model.TaskNo, model.Status);
+
+                return Ok(result);
+            }
+            catch (Exception e)
+            {
+                result.Message = e.Message;
+                return Ok(result);
+            }
+        }
+
+        /// <summary>
+        /// 鍑哄簱鍗曟嵁涓嬪彂
+        /// </summary>
+        /// <param name="model">鍑哄簱鍗曚俊鎭�</param>
+        /// <returns></returns>
+        //[Authorize]
+        [HttpPost]
+        public IActionResult CreateSoWork(SoInfo model)
+        {
+            try
+            {
+                /*var claimsIdentity = this.User.Identity as ClaimsIdentity;
+                if (claimsIdentity == null)
+                {
+                    throw new Exception("鏈幏鍙栧埌鐢ㄦ埛淇℃伅");
+                }
+                string UserId = claimsIdentity.FindFirst(ClaimTypes.Name)?.Value;
+                if (string.IsNullOrWhiteSpace(UserId))
+                {
+                    throw new Exception("鏈幏鍙栧埌鐢ㄦ埛淇℃伅");
+                }*/
+
+                SoResInfo result = _exNoticeSvc.ErpAddExportNotice(model);
+                return Ok(result);
+
+            }
+            catch (Exception e)
+            {
+                return Ok(new ErpModel { Success = -1, Message = e.Message });
+            }
+        }
+        #endregion
+
         //绠辩爜淇℃伅 鎵嬫寔缁勬墭鐢� (璧嬬爜鎴栬拷婧笅鍙戝埌wms)
 
         //璐ㄦ缁撴灉涓嬪彂鎺ュ彛 

--
Gitblit v1.8.0