From f12e902740ee3222696a74868af867379187234c Mon Sep 17 00:00:00 2001 From: yxj <1qaz@123> Date: 星期四, 24 三月 2022 10:37:15 +0800 Subject: [PATCH] 新增已上传单据查询调用方法 --- CLOUDWEB/WebService1.asmx.cs | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/CLOUDWEB/WebService1.asmx.cs b/CLOUDWEB/WebService1.asmx.cs index 8686990..5b6ff6d 100644 --- a/CLOUDWEB/WebService1.asmx.cs +++ b/CLOUDWEB/WebService1.asmx.cs @@ -28662,6 +28662,22 @@ } } + //宸蹭笂浼犳煡璇㈢晫闈紝鏍规嵁鍗曟嵁鍙枫�佹簮鍗曞彿鏌ヨ宸蹭笂浼犲崟鎹俊鎭� + [WebMethod] + public DataSet GetKf_ICStockBillQueryList(string sHBillType, string sBillNo, string sSourceBillNo) + { + SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); + DataSet Ds = oCn.RunProcReturn("exec h_p_Kf_ICStockBillQueryList '" + sHBillType + "','" + sBillNo + "','" + sSourceBillNo + "'", "h_p_Kf_ICStockBillQueryList"); + if (Ds == null || Ds.Tables[0].Rows.Count == 0) + { + return null; + } + else + { + return Ds; + } + } + #endregion #region 鏌ヨ鏉$爜搴撳瓨 * -- Gitblit v1.9.1