Wms/WMS.BLL/BllQualityServer/QualityInspectServer.cs
@@ -134,6 +134,23 @@ return isquality; } /// <summary> /// 获取库存批次号集合 /// </summary> /// <returns></returns> /// <exception cref="Exception"></exception> public List<DataStockDetail> GetLotNoList() { try { var _list = Db.Queryable<DataStockDetail>().Where(w => w.IsDel == "0" && !string.IsNullOrEmpty(w.LotNo)).ToList(); return _list; } catch (Exception ex) { throw new Exception(ex.Message); } } #endregion }