using MESClassLibrary.BLL.Log; using MESClassLibrary.EFModel; using MESClassLibrary.Model; using MESClassLibrary.DAL.BasicInfo; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using System.Data; using System.Data.SqlClient; namespace MESClassLibrary.BLL.BasicInfo { public class StationBLL { BasicBLL db = new BasicBLL(); /// /// 查询信息 /// /// public string SearchInfo(string page, string pagesize, string StationNo, string LineID) { try { string jsonStr = "[]"; int total = 0;//总行数 List list = db.SearchAllInfo(); if (!String.IsNullOrEmpty(LineID)) { list = list.Where(p => p.LineID == LineID).ToList();//按条件分页查询 } if (!String.IsNullOrEmpty(StationNo)) { list = list.Where(p => p.StationNo.Contains(StationNo)).ToList();//按条件分页查询 } if (list.Count > 0) { total = list.Count; int Skipcount = (Convert.ToInt32(page) - 1) * Convert.ToInt32(pagesize); list = list.Skip(Skipcount).Take(Convert.ToInt32(pagesize)).ToList(); #region 联查 List StationList = new List(); BasicBLL pl_db = new BasicBLL(); var pl_list = pl_db.SearchAllInfo().ToList(); foreach (var item in list) { StationModel dm = Tool.Mapper(item); var info = pl_list.FirstOrDefault(p => p.LineID == item.LineID); if (info != null) { dm.LineName = info.LineName; } StationList.Add(dm); } #endregion JsonDataModel md = new JsonDataModel(); md.total = total.ToString(); md.rows = StationList; jsonStr = JSONTools.ScriptSerialize>(md); } return jsonStr; } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return ""; } } /// /// 添加信息 /// /// 生产线模型对象 /// public bool AddInfo(tb_Station md) { try { var list = db.SearchInfoByKey("StationNo", md.StationNo);//判断是否有重复数据 if (list != null) { if (list.Where(p => p.StationID != md.StationID).Count() > 0) { return false; } } return db.AddInfo(md); } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return false; } } /// /// 修改信息 /// /// 生产线模型对象 /// public bool UpdateInfo(tb_Station md) { try { var list = db.SearchAllInfo().Where(p => p.StationNo == md.StationNo && p.StationID != md.StationID).ToList();//判断是否有重复数据 if (list.Count > 0) { return false; } //初始化要更新的字段 string[] proNames = new string[3]; proNames[0] = "LineID"; proNames[1] = "StationNo"; proNames[2] = "Des"; //必填字段初始化,如果不需要更新必填字段则设置为空即可,时间类型无需初始化 //如果没有初始化必填字段,更新会报错 //md.Des = ""; return db.UpdateInfo(md, proNames); } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return false; } } /// 删除生产线信息 public bool DelInfo(tb_Station md) { try { return db.DelInfo(md); } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return false; } } public string GetComboboxData(string stationNo) { try { string jsonStr = "[]"; if (string.IsNullOrWhiteSpace(stationNo)) { var list = db.SearchAllInfo().OrderBy(p=>p.StationNo).ToList(); jsonStr = JSONTools.ScriptSerialize>(list); } else { var list = db.SearchInfoContains("StationNo", stationNo).OrderBy(p=>p.StationNo).ToList(); jsonStr = JSONTools.ScriptSerialize>(list); } return jsonStr; } catch (Exception) { return ""; } } public DataTable SearchInfoByNo(string station) { StationDAL db = new StationDAL(); try { return db.SearchInfoByNo(station); } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return null; } } } }