From ee6683a1351733a7c5b1e50a7722c96dfd42e2a2 Mon Sep 17 00:00:00 2001
From: hao <1836460075@qq.com>
Date: 星期五, 30 五月 2025 16:25:28 +0800
Subject: [PATCH] 退换料确认

---
 StandardInterface/MESApplication/Controllers/QC/RetMatController.cs |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/StandardInterface/MESApplication/Controllers/QC/RetMatController.cs b/StandardInterface/MESApplication/Controllers/QC/RetMatController.cs
index fa187d1..1f18c50 100644
--- a/StandardInterface/MESApplication/Controllers/QC/RetMatController.cs
+++ b/StandardInterface/MESApplication/Controllers/QC/RetMatController.cs
@@ -66,4 +66,19 @@
             return ResponseResult.ResponseError(ex);
         }
     }
+    [HttpPost("Reject")]
+    public ResponseResult Reject([FromBody] ReviewRequest req)
+    {
+        try
+        {
+            _service.Reject(docNo: req.DocNo, user: req.User);
+            return new ResponseResult { status = 0, message = "椹冲洖鎴愬姛" };
+        }
+        catch (Exception ex)
+        {
+            return ResponseResult.ResponseError(ex);
+        }
+    }
+
+
 }

--
Gitblit v1.9.3