using System; using System.Collections.Generic; using System.Linq; using System.Text; using QMAPP.BLL; using QMFrameWork.Data; using QMAPP.Entity; using QMFrameWork.Log; using System.Data; using QMAPP.MD.Entity; using QMAPP.MD.DAL; using QMAPP.FJC.Entity.CheckTime; using QMAPP.FJC.DAL.CheckTime; using QMAPP.FJC.BLL.BZD; namespace QMAPP.FJC.BLL.CheckTime { /// /// 模块名称:本地库无记录的 时间验证 /// 作 者:张松男 /// 编写日期:2020年03月00日 /// public class ProductTimeBLL : BaseBLL { #region 获取信息 /// /// 获取信息 /// /// 条件 /// 信息 public DataResult Get(ProductTime model) { DataResult result = new DataResult(); try { result.Result = new ProductTimeDAL().Get(model); } catch (Exception ex) { result.IsSuccess = false; result.Msg = Resource.SystemException; throw ex; } result.IsSuccess = true; return result; } #endregion #region 获取列表(分页) /// /// 获取列表 /// /// 条件 /// 数据页 /// 数据页 public DataResult GetList(ProductTime condition, DataPage page) { DataResult result = new DataResult(); try { //获取物料信息列表 DataPage dataPage = new ProductTimeDAL().GetList(condition, page); result.Result = dataPage; } catch (Exception ex) { result.IsSuccess = false; result.Msg = Resource.SystemException; throw ex; } result.IsSuccess = true; return result; } /// /// 获取全部条码格式规则 /// /// public List GetAllList(string str) { return new ProductTimeDAL().GetAllList(); } #endregion #region 信息是否重复 /// /// 判断名称是否存在 /// /// 信息 /// true:已存在;fasel:不存在。 public bool Exists(ProductTime info) { try { return new ProductTimeDAL().Exists(info); } catch (Exception ex) { throw ex; } } #endregion #region 插入信息 /// /// 插入信息(单表) /// /// 信息 /// 插入行数 public DataResult Insert(ProductTime info) { DataResult result = new DataResult(); try { //基本信息 info.PID = Guid.NewGuid().ToString(); info.CREATEUSER = this.LoginUser.UserID; info.CREATEDATE = DateTime.Now; info.UPDATEUSER = info.CREATEUSER; info.UPDATEDATE = info.CREATEDATE; ProductTimeDAL cmdDAL = new ProductTimeDAL(); result.Result = new ProductTimeDAL().Insert(info); result.IsSuccess = true; return result; } catch (Exception ex) { throw ex; } } #endregion #region 更新信息 /// /// 更新信息 /// /// 信息 /// 更新行数 public DataResult Update(ProductTime info) { DataResult result = new DataResult(); try { info.UPDATEUSER = this.LoginUser.UserID; info.UPDATEDATE = DateTime.Now; result.Result = new ProductTimeDAL().Update(info); result.IsSuccess = true; return result; } catch (Exception ex) { throw ex; } } #endregion #region 删除 /// /// 删除信息 /// /// 主键串 /// 删除个数 public DataResult Delete(string strs) { int count = 0; DataResult result = new DataResult(); string[] list = strs.Split(":".ToCharArray()); try { foreach (string str in list) { count += this.DeleteBarcodeRules(new ProductTime { PID = str }); } result.Result = count; result.IsSuccess = true; return result; } catch (Exception ex) { throw ex; } } /// /// 删除信息 /// /// 信息 /// 删除个数 public int DeleteBarcodeRules(ProductTime info) { try { return new ProductTimeDAL().Delete(info); } catch (Exception ex) { throw ex; } } #endregion #region 导出数据 /// /// 获取导出的数据 /// /// 查询条件 /// 数据 public DataTable GetExportData(ProductTime model) { try { return new ProductTimeDAL().GetExportData(model); } catch (Exception ex) { throw ex; } } #endregion } }