From 5159c3dc64fc7a783384b1c13da01f338340e5dd Mon Sep 17 00:00:00 2001
From: xwt <2740516069@qq.com>
Date: 星期五, 16 五月 2025 15:58:02 +0800
Subject: [PATCH] bug修改

---
 StandardInterface/MES.Service/service/QC/LljService.cs           |   10 +++++-----
 StandardInterface/MESApplication/Controllers/QC/LljController.cs |    2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/StandardInterface/MES.Service/service/QC/LljService.cs b/StandardInterface/MES.Service/service/QC/LljService.cs
index 1a3d6c4..713ea9e 100644
--- a/StandardInterface/MES.Service/service/QC/LljService.cs
+++ b/StandardInterface/MES.Service/service/QC/LljService.cs
@@ -63,9 +63,9 @@
     /// <param name="quantity"></param>
     /// <param name="releaseNo"></param>
     /// <returns></returns>
-    public string[] SetItems(string itemNo,
-        decimal quantity, string releaseNo)
+    public string[] SetItems(decimal itemNo,  decimal quantity, string releaseNo)
     {
+       
         // 瀹氫箟杈撳嚭鍙傛暟
         var outputResult = new SugarParameter("o_Result", null,
             DbType.Int32, ParameterDirection.Output,
@@ -78,8 +78,8 @@
         // 瀹氫箟杈撳叆鍙傛暟
         var parameters = new List<SugarParameter>
         {
-            new("P_RELEASE_NO", releaseNo,
-          DbType.String, ParameterDirection.Input),
+            new("P_RELEASE_NO", releaseNo,  DbType.String, ParameterDirection.Input),
+            new("P_ITEM_ID", itemNo,  DbType.String, ParameterDirection.Input),
       outputResult,
       outputMessage
         };
@@ -88,7 +88,7 @@
 
         // 浣跨敤 SqlSugar 鎵ц瀛樺偍杩囩▼
         db.Ado.ExecuteCommand(
-            "BEGIN PRC_QA_ITEM_INSERT_BTN(:P_RELEASE_NO, :o_Result, :o_Msg); END;",
+            "BEGIN PRC_QA_ITEM_INSERT_BTN(:P_RELEASE_NO,:P_ITEM_ID, :o_Result, :o_Msg); END;",
             parameters.ToArray());
 
         // 鑾峰彇杈撳嚭鍙傛暟鐨勫��
diff --git a/StandardInterface/MESApplication/Controllers/QC/LljController.cs b/StandardInterface/MESApplication/Controllers/QC/LljController.cs
index 529ba55..2c242fe 100644
--- a/StandardInterface/MESApplication/Controllers/QC/LljController.cs
+++ b/StandardInterface/MESApplication/Controllers/QC/LljController.cs
@@ -39,7 +39,7 @@
     [HttpPost("setJYItem")]
     public ResponseResult setJYItem([FromBody] JObject data)
     {
-        var itemNo = data["itemNo"].ToString();
+        var itemNo =  Convert.ToDecimal(data["itemNo"].ToString());
         var quantity = Convert.ToDecimal(data["quantity"].ToString());
         var releaseNo = data["releaseNo"].ToString();
         try

--
Gitblit v1.9.3