From 7b2a3e95296e04ca69900c46f852f1f078d3e5f6 Mon Sep 17 00:00:00 2001
From: black-goat-me <226547893@qq.com>
Date: 星期一, 24 四月 2023 14:10:54 +0800
Subject: [PATCH] 其它入库单缓存列表:动态列实现 采购入库单缓存列表:动态列实现 委外入库单缓存列表:动态列实现 生产领料单缓存列表:动态列实现 生产入库单缓存列表:动态列实现 销售出库单缓存列表:动态列实现
---
DAL/基础资料/公用基础资料/ClsGy_Warehouse_View.cs | 21 ++++++++++++++++++++-
1 files changed, 20 insertions(+), 1 deletions(-)
diff --git "a/DAL/\345\237\272\347\241\200\350\265\204\346\226\231/\345\205\254\347\224\250\345\237\272\347\241\200\350\265\204\346\226\231/ClsGy_Warehouse_View.cs" "b/DAL/\345\237\272\347\241\200\350\265\204\346\226\231/\345\205\254\347\224\250\345\237\272\347\241\200\350\265\204\346\226\231/ClsGy_Warehouse_View.cs"
index 4522e8d..b2c83f3 100644
--- "a/DAL/\345\237\272\347\241\200\350\265\204\346\226\231/\345\205\254\347\224\250\345\237\272\347\241\200\350\265\204\346\226\231/ClsGy_Warehouse_View.cs"
+++ "b/DAL/\345\237\272\347\241\200\350\265\204\346\226\231/\345\205\254\347\224\250\345\237\272\347\241\200\350\265\204\346\226\231/ClsGy_Warehouse_View.cs"
@@ -66,7 +66,26 @@
{
throw (e);
}
- }
+ }
+ //鏍规嵁浠g爜杩斿洖椤圭洰淇℃伅
+ public override bool GetInfoByName(string sNumber)
+ {
+ DataSet DS;
+ try
+ {
+ DS = oCn.RunProcReturn("Select * from " + MvarItemKey + " Where HName='" + sNumber + "'", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
+ if (DS.Tables[0].Rows.Count == 0)
+ return false;
+ else
+ {
+ return GetInfo(DS);
+ }
+ }
+ catch (Exception e)
+ {
+ throw (e);
+ }
+ }
//杩斿洖椤圭洰淇℃伅
public override bool GetInfo(DataSet Ds)
{
--
Gitblit v1.9.1