using System; using System.Collections.Generic; using System.Linq; using System.Text; using QMAPP.Entity; using QMAPP.FJC.Entity.Basic; using QMFrameWork.Log; using QMAPP.FJC.DAL.Basic; using QMAPP.FJC.Entity; using QMFrameWork.Data; using QMAPP.BLL; namespace QMAPP.FJC.BLL.Basic { public class FactoryBLL:BaseBLL { #region 获取信息 /// /// 获取信息 /// /// 条件 /// 信息 public DataResult Get(Factory model) { DataResult result = new DataResult(); try { result.Result = new FactoryDAL().Get(model); } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "工厂信息逻辑层-获取信息!" }); result.IsSuccess = false; result.Msg = Resource.SystemException; throw ex; } result.IsSuccess = true; return result; } #endregion #region 获取列表 /// /// 获取列表 /// /// 条件 /// 数据页 /// 数据页 public DataResult GetList(Factory condition, DataPage page) { DataResult result = new DataResult(); try { //获取工厂信息列表 DataPage dataPage = new FactoryDAL().GetList(condition, page); result.Result = dataPage; } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "工厂信息逻辑层-获取列表!" }); result.IsSuccess = false; result.Msg = Resource.SystemException; throw ex; } result.IsSuccess = true; return result; } /// /// 获取列表 /// /// 条件 /// 全部集合 public List GetAllList(Factory condition) { try { //获取物料信息列表 List list = new FactoryDAL().GetAllList(condition); return list; } catch (Exception ex) { throw ex; } } #endregion #region 信息是否重复 /// /// 判断名称是否存在 /// /// /// true:已存在;fasel:不存在。 public bool ExistsPlant(Factory model) { try { return new FactoryDAL().ExistsPlant(model); } catch (Exception ex) { throw ex; } } #endregion #region 插入信息 /// /// 插入信息(单表) /// /// 信息 /// 插入行数 public DataResult Insert(Factory model) { DataResult result = new DataResult(); //基本信息 model.PID = Guid.NewGuid().ToString(); model.FLAGDEL = "0"; model.CREATEUSR = this.LoginUser.UserID; model.CREATEDATE = DateTime.Now; model.UPDATEUSR = model.CREATEUSR; model.UPDATEDATE = model.CREATEDATE; FactoryDAL cmdDAL = new FactoryDAL(); try { if (ExistsPlant(model) == true) { result.IsSuccess = false; result.Msg = Resource.MaterielCodeIsHave; return result; } result.Result = new FactoryDAL().Insert(model); } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "工厂信息逻辑层-插入信息!" }); result.IsSuccess = false; result.Msg = Resource.SystemException; throw ex; } result.IsSuccess = true; return result; } #endregion #region 更新信息 /// /// 更新信息 /// /// /// 更新行数 public DataResult Update(Factory model) { DataResult result = new DataResult(); model.UPDATEUSR = this.LoginUser.UserID; try { if (ExistsPlant(model) == true) { result.IsSuccess = false; result.Msg = Resource.MaterielCodeIsHave; return result; } result.Result = new FactoryDAL().Update(model); } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "工厂信息逻辑层-更新信息!" }); result.IsSuccess = false; result.Msg = Resource.SystemException; throw ex; } result.IsSuccess = true; return result; } #endregion #region 删除 /// /// 删除信息 /// /// /// 删除个数 public DataResult Delete(string strs) { int count = 0; string[] list = strs.Split(":".ToCharArray()); DataResult result = new DataResult(); try { foreach (string str in list) { count += this.DeleteFactory(new Factory { PID = str }); } if (count == 0) { result.IsSuccess = false; return result; } result.Result = count; result.IsSuccess = true; return result; } catch (Exception ex) { throw ex; } } /// /// 删除信息 /// /// 信息 /// 删除个数 public int DeleteFactory(Factory model) { int count = 0; //int number = new FactoryDAL().DelCheck(model); //if (number > 0) //{ //return count; //} //try //{ count = new FactoryDAL().Delete(model); return count; //} //catch (Exception ex) //{ //throw ex; ///} } #endregion #region 获取工厂列表(下拉列表使用) /// /// 获取列表 /// /// 条件 /// 全部集合 public DataResult> GetFactoryList(Factory condition) { DataResult> result = new DataResult>(); try { result.Result = new FactoryDAL().GetFactoryList(condition); } catch (Exception ex) { LogManager.LogHelper.Error(new LogInfo() { ErrorInfo = ex, Tag = ex.StackTrace, Info = "工厂信息逻辑层-获取工厂列表(绑定下拉列表使用)!" }); result.IsSuccess = false; result.Msg = Resource.SystemException; throw ex; } result.IsSuccess = true; return result; } #endregion } }