using System; using System.Collections.Generic; using System.Linq; using System.Text; using QMAPP.BLL; using QMAPP.FJC.Entity.Basic; using QMAPP.FJC.DAL.Basic; using QMFrameWork.Data; using QMAPP.FJC.BLL.Dict; using System.Data; using QMAPP.Entity; using QMFrameWork.Log; using QMAPP.FJC.Entity; using QMAPP.Entity.Sys; using QMAPP.BLL.Sys; namespace QMAPP.FJC.BLL.Basic { /// /// 模块编号:M2-5 /// 作 用:操作者数据层 /// 作 者:王丹丹 /// 编写日期:2015年05月29日 /// public class OperatorInfoBLL : BaseBLL { #region 获取信息 /// /// 获取信息 /// /// 条件 /// 信息 public DataResult Get(OperatorInfo model) { DataResult result = new DataResult(); try { result.Result = new OperatorInfoDAL().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(OperatorInfo condition, DataPage page) { DataResult result = new DataResult(); try { //获取信息列表 DataPage dataPage = new OperatorInfoDAL().GetList(condition, page); #region 转换工序类别显示类型 List operatorInfoList = dataPage.Result as List; DictManageBLL dictProcessTypeBll = new DictManageBLL(DictKind.PROCESSTYPE); foreach (OperatorInfo m in operatorInfoList) { //工序类别 m.PROCESSTYPETXT = dictProcessTypeBll.GetDictValue(m.PROCESSTYPE); } #endregion 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(OperatorInfo condition) { try { //获取信息列表 List list = new OperatorInfoDAL().GetList(condition); return list; } catch (Exception ex) { throw ex; } } #endregion #region 信息是否重复 /// /// 判断名称是否存在 /// /// /// true:已存在;fasel:不存在。 public bool ExistsOperatorInfo(OperatorInfo model) { try { return new OperatorInfoDAL().ExistsOperatorInfo(model); } catch (Exception ex) { throw ex; } } #endregion #region 插入信息 /// /// 插入信息(单表) /// /// 信息 /// 插入行数 public DataResult Insert(OperatorInfo model) { DataResult result = new DataResult(); OperatorInfoDAL cmdDAL = new OperatorInfoDAL(); //基本信息 model.PID = Guid.NewGuid().ToString(); model.CREATEUSER = this.LoginUser.UserID; model.CREATEDATE = DateTime.Now; model.UPDATEUSER = model.CREATEUSER; model.UPDATEDATE = model.CREATEDATE; try { if (ExistsOperatorInfo(model) == true) { result.IsSuccess = false; result.Msg = Resource.OperatorCodeIsHave; return result; } result.Result = new OperatorInfoDAL().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(OperatorInfo model) { DataResult result = new DataResult(); //基本信息 model.UPDATEUSER = this.LoginUser.UserID; try { if (ExistsOperatorInfo(model) == true) { result.IsSuccess = false; result.Msg = Resource.OperatorCodeIsHave; return result; } result.Result = new OperatorInfoDAL().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) { DataResult result = new DataResult(); string[] list = strs.Split(":".ToCharArray()); try { foreach (string str in list) { result.Result += this.DeleteOperatorInfo(new OperatorInfo { PID = str }); } } 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 int DeleteOperatorInfo(OperatorInfo model) { int count = 0; try { count = new OperatorInfoDAL().Delete(model); return count; } catch (Exception ex) { throw ex; } } #endregion /// /// 获取列表 /// /// 条件 /// 全部集合 public List GetAllUserList(User condition) { try { //获取信息列表 List list = new UserManageBLL().GetAllUsers(condition); return list; } catch (Exception ex) { throw ex; } } } }