From fcd7bdad6b26e30b0a2baa5fd5001875064f667b Mon Sep 17 00:00:00 2001 From: black-goat-me <226547893@qq.com> Date: 星期五, 28 四月 2023 17:04:48 +0800 Subject: [PATCH] 物料、物料分类、仓库、部门增加审核、反审核、禁用、反禁用功能。 --- WebAPI/Controllers/ProductInController.cs | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/WebAPI/Controllers/ProductInController.cs b/WebAPI/Controllers/ProductInController.cs index 4a98976..8291829 100644 --- a/WebAPI/Controllers/ProductInController.cs +++ b/WebAPI/Controllers/ProductInController.cs @@ -358,8 +358,9 @@ { WebS.WebService1 oWebs = new WebS.WebService1(); WebS.ClsKf_ICStockBill_WMS WebSoBar = new WebS.ClsKf_ICStockBill_WMS(); + string sBarCode = POStockInBillController.JX_Json(sCode, sInterID, HBillType, HOWNERID, sBillNo, sMaker); string sExpressNumber = ""; - WebSoBar = oWebs.get_CheckTypeByBarCode_BillCheck(sCode, sInterID, HBillType, sBillNo, sMaker, WhID, SPID, (double)sQty, HOWNERID, ref ClsPub.sErrInfo); + WebSoBar = oWebs.get_CheckTypeByBarCode_BillCheck(sBarCode, sInterID, HBillType, sBillNo, sMaker, WhID, SPID, (double)sQty, HOWNERID, ref ClsPub.sErrInfo); bool flag = WebSoBar == null; object result; if (flag) @@ -1238,8 +1239,8 @@ List<ClsKf_ProductInBillMain> list = new List<ClsKf_ProductInBillMain>(); ListModels listModels = new ListModels(); list = listModels.getProductInBillMainByJson(jsonString); - list[0].HYear = ClsPub.isLong(DateTime.Now.Year); - list[0].HDate = ClsPub.isDate(DateTime.Now.ToString("yyyy-MM-dd")); + //list[0].HYear = ClsPub.isLong(DateTime.Now.Year); + //list[0].HDate = ClsPub.isDate(DateTime.Now.ToString("yyyy-MM-dd")); string hbillType = list[0].HBillType; WebAPI.WebS.ClsKf_ProductInBillMain clsKf_ProductInBillMain = new WebAPI.WebS.ClsKf_ProductInBillMain(); clsKf_ProductInBillMain.HInterID = list[0].HInterID; -- Gitblit v1.9.1