From 165e90b5b1a6ac057cf0ace591f8fd66244742d7 Mon Sep 17 00:00:00 2001 From: yusijie <ysj@hz-kingdee.com> Date: 星期四, 27 十月 2022 15:10:24 +0800 Subject: [PATCH] 动态列(物料、仓库、工位、职员、部门、辅助属性、组织、计量单位、货币、月度设置、客户、供应商、订单等级、订单反馈状态、工艺参数、工艺参数单位、工艺参数对应表、包装方式、故障类别) --- 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