From e1c862e0a3225c96b9ed209a58b8168e5673fcb7 Mon Sep 17 00:00:00 2001
From: yangle <admin@YINMOU>
Date: 星期三, 31 一月 2024 15:49:33 +0800
Subject: [PATCH] 工序流转卡 删除方法,增加 调用 删除 前控制 h_p_Sc_ProcessExchangeBill_BeforeDelCtrl 和删除 后控制 h_p_Sc_ProcessExchangeBill_AfterDelCtrl 的 存储过程。 工序返工申请单 删除 方法,增加 调用 删除 前控制 h_p_Sc_ProcExchWorkBackBill_BeforeDelCtrl 和 删除 后控制 h_p_Sc_ProcExchWorkBackBill_AfterDelCtrl 的 存储过程。 工序返工记录单 删除 方法,增加 调用 删除 前控制 h_p_Sc_ProcExchRecordBackBill_BeforeDelCtrl 和 删除 后控制 h_p_Sc_ProcExchRecordBackBill_AfterDelCtrl 的 存储过程。

---
 WebAPI/Controllers/BaseSet/Gy_BarCodeBillController.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/WebAPI/Controllers/BaseSet/Gy_BarCodeBillController.cs b/WebAPI/Controllers/BaseSet/Gy_BarCodeBillController.cs
index 35833b8..7e406a4 100644
--- a/WebAPI/Controllers/BaseSet/Gy_BarCodeBillController.cs
+++ b/WebAPI/Controllers/BaseSet/Gy_BarCodeBillController.cs
@@ -27,10 +27,10 @@
         /// <returns></returns>
         [Route("Gy_BarCodeBillList/Sub_DeleteBill")]
         [HttpGet]
-        public object Sub_DeleteBill(long HInterID, string HBarCode, string CurUserName)
+        public object Sub_DeleteBill(long HInterID, string HBarCode)
         {
             DAL.ClsGy_BarCodeBill_Ctl oBill = new DAL.ClsGy_BarCodeBill_Ctl();
-            if (oBill.DeleteBill(HInterID, HBarCode, CurUserName, ref DBUtility.ClsPub.sExeReturnInfo))
+            if (oBill.DeleteBill(HInterID, HBarCode, ref DBUtility.ClsPub.sExeReturnInfo))
             {
                 objJsonResult.code = "0";
                 objJsonResult.count = 0;
@@ -55,10 +55,10 @@
         /// <returns></returns>
         [Route("Gy_BarCodeBillList/Sub_MulDeleteBill")]
         [HttpGet]
-        public object Sub_MulDeleteBill(string sInterID, string sBarCode, string CurUserName)
+        public object Sub_MulDeleteBill(string sInterID, string sBarCode)
         {
             DAL.ClsGy_BarCodeBill_Ctl oBill = new DAL.ClsGy_BarCodeBill_Ctl();
-            if (oBill.MulDeleteBill(sInterID, sBarCode, CurUserName, ref DBUtility.ClsPub.sExeReturnInfo))
+            if (oBill.MulDeleteBill(sInterID, sBarCode, ref DBUtility.ClsPub.sExeReturnInfo))
             {
                 objJsonResult.code = "0";
                 objJsonResult.count = 0;

--
Gitblit v1.9.1