zzr99
2022-05-27 9305340d0d22505ead926186eb5bc441c9cbf76b
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);
        }
    }
}