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.Entity;
using QMAPP.FJC.BLL.Dict;
using QMAPP.Entity;
using QMFrameWork.Log;
namespace QMAPP.FJC.BLL.Basic
{
///
/// 模块编号:M2-10
/// 作 用:物料架类型维护逻辑层
/// 作 者:王丹丹
/// 编写日期:2015年06月03日
///
public class MaterialShelfTypeBLL : BaseBLL
{
#region 获取信息
///
/// 获取信息
///
/// 条件
/// 信息
public DataResult Get(MaterialShelfType model)
{
DataResult result = new DataResult();
try
{
result.Result = new MaterialShelfTypeDAL().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(MaterialShelfType condition, DataPage page)
{
DataResult result = new DataResult();
try
{
//获取信息列表
DataPage dataPage = new MaterialShelfTypeDAL().GetList(condition, page);
#region 转换高低配、颜色显示类型
List materialShelfTypeList = dataPage.Result as List;
DictManageBLL dictHAndLBll = new DictManageBLL(DictKind.HAndL);
DictManageBLL dictColorBll = new DictManageBLL(DictKind.COLOR);
DictManageBLL dictProductTypeBll = new DictManageBLL(DictKind.PRODUCTTYPE);
foreach (MaterialShelfType m in materialShelfTypeList)
{
//高低配
m.VERSIONTXT = dictHAndLBll.GetDictValue(m.VERSION);
//颜色
m.COLORCODETXT = dictColorBll.GetDictValue(m.COLORCODE);
}
#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(MaterialShelfType condition)
{
try
{
//获取信息列表
List list = new MaterialShelfTypeDAL().GetList(condition);
#region 转换高低配、颜色显示类型
DictManageBLL dictHAndLBll = new DictManageBLL(DictKind.HAndL);
DictManageBLL dictColorBll = new DictManageBLL(DictKind.COLOR);
DictManageBLL dictProductTypeBll = new DictManageBLL(DictKind.PRODUCTTYPE);
foreach (MaterialShelfType m in list)
{
//高低配
m.VERSIONTXT = dictHAndLBll.GetDictValue(m.VERSION);
//颜色
m.COLORCODETXT = dictColorBll.GetDictValue(m.COLORCODE);
}
#endregion
return list;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 信息是否重复
///
/// 判断名称是否存在
///
///
/// true:已存在;fasel:不存在。
public bool ExistsMaterialShelfType(MaterialShelfType model)
{
try
{
return new MaterialShelfTypeDAL().ExistsMaterialShelfType(model);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 插入信息
///
/// 插入信息(单表)
///
/// 信息
/// 插入行数
public DataResult Insert(MaterialShelfType model)
{
DataResult result = new DataResult();
MaterialShelfTypeDAL cmdDAL = new MaterialShelfTypeDAL();
//基本信息
model.PID = Guid.NewGuid().ToString();
model.CREATEUSER = this.LoginUser.UserID;
model.CREATEDATE = DateTime.Now;
model.UPDATEUSER = model.CREATEUSER;
model.UPDATEDATE = model.CREATEDATE;
model.PRODUCTTYPE = EnumGeter.ProductType.benti.GetHashCode().ToString();
try
{
if (ExistsMaterialShelfType(model) == true)
{
result.IsSuccess = false;
result.Msg = Resource.MaterialShelfCodeIsHave;
return result;
}
result.Result = new MaterialShelfTypeDAL().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(MaterialShelfType model)
{
DataResult result = new DataResult();
//基本信息
model.UPDATEUSER = this.LoginUser.UserID;
try
{
if (ExistsMaterialShelfType(model) == true)
{
result.IsSuccess = false;
result.Msg = Resource.MaterialShelfCodeIsHave;
return result;
}
result.Result = new MaterialShelfTypeDAL().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.DeleteMaterialShelfType(new MaterialShelfType { 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 DeleteMaterialShelfType(MaterialShelfType model)
{
int count = 0;
try
{
count = new MaterialShelfTypeDAL().Delete(model);
return count;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
}
}