From bd0b71f80f02abaa3f6e462277f4fd883ba76c3b Mon Sep 17 00:00:00 2001 From: ch <37327@LLOOCCY> Date: 星期二, 24 五月 2022 16:49:18 +0800 Subject: [PATCH] Merge branch 'master' of http://101.37.171.70:10101/r/MES-WEB-API --- WebAPI/WebServer.cs | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/WebAPI/WebServer.cs b/WebAPI/WebServer.cs index 042e936..72f7147 100644 --- a/WebAPI/WebServer.cs +++ b/WebAPI/WebServer.cs @@ -4373,6 +4373,19 @@ //return dal.GetInfoByID_View(HInterID, sBillType, sWhere); } + public bool Get_CheckQtyByBarCode(string sBarcode, long HWHID, long HSPID, long HAuxPropID, string sBatchNo, string HMTONo, double sQty, ref double sRelQty) + { + DAL.ClsKF_PonderationBillMain_Temp_View dal = new DAL.ClsKF_PonderationBillMain_Temp_View(); + if (dal.CheckQtyByBarCode(sBarcode, HWHID, HSPID, HAuxPropID, sBatchNo, HMTONo, sQty, ref sRelQty)) + { + return true; + } + else + { + return false; + } + } + public DataSet GetSPInfoByIDandHWHIDandOrg(long sItemID, long sHWHID, long HUSEORGID, ref string sErrMsg) { BLL.ClsIF_StockPlace_View bll = new BLL.ClsIF_StockPlace_View(); @@ -7994,5 +8007,12 @@ return dal.GetKf_ICStockBillList(sHBillType, HMaker, HOrgID); } + //杩斿洖缂撳瓨鍒楄〃鏌ヨ宸蹭笂浼犲垪琛ㄤ俊鎭� + public DataSet GetQueryBillUpdateLoad_Json(string BillType, string HBillNo, string HSourceBillNo) + { + DAL.ClsKF_PonderationBillMain_Temp_View dal = new DAL.ClsKF_PonderationBillMain_Temp_View(); + return dal.GetKf_ICStockBillQueryList(BillType, HBillNo, HSourceBillNo); + } + } } \ No newline at end of file -- Gitblit v1.9.1