天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

294 lines
9.6 KiB

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
{
/// <summary>
/// 模块编号:M2-10
/// 作 用:物料架类型维护逻辑层
/// 作 者:王丹丹
/// 编写日期:2015年06月03日
///</summary>
public class MaterialShelfTypeBLL : BaseBLL
{
#region 获取信息
/// <summary>
/// 获取信息
/// </summary>
/// <param name="">条件</param>
/// <returns>信息</returns>
public DataResult<MaterialShelfType> Get(MaterialShelfType model)
{
DataResult<MaterialShelfType> result = new DataResult<MaterialShelfType>();
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 获取列表
/// <summary>
/// 获取列表
/// </summary>
/// <param name="condition">条件</param>
/// <param name="page">数据页</param>
/// <returns>数据页</returns>
public DataResult<DataPage> GetList(MaterialShelfType condition, DataPage page)
{
DataResult<DataPage> result = new DataResult<DataPage>();
try
{
//获取信息列表
DataPage dataPage = new MaterialShelfTypeDAL().GetList(condition, page);
#region 转换高低配、颜色显示类型
List<MaterialShelfType> materialShelfTypeList = dataPage.Result as List<MaterialShelfType>;
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;
}
/// <summary>
/// 获取列表
/// </summary>
/// <param name="condition">条件</param>
/// <returns>全部数据</returns>
public List<MaterialShelfType> GetAllList(MaterialShelfType condition)
{
try
{
//获取信息列表
List<MaterialShelfType> 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 信息是否重复
/// <summary>
/// 判断名称是否存在
/// </summary>
/// <param name="info"></param>
/// <returns>true:已存在;fasel:不存在。</returns>
public bool ExistsMaterialShelfType(MaterialShelfType model)
{
try
{
return new MaterialShelfTypeDAL().ExistsMaterialShelfType(model);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 插入信息
/// <summary>
/// 插入信息(单表)
/// </summary>
/// <param name="">信息</param>
/// <returns>插入行数</returns>
public DataResult<int> Insert(MaterialShelfType model)
{
DataResult<int> result = new DataResult<int>();
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 更新信息
/// <summary>
/// 更新信息
/// </summary>
/// <param name=""></param>
/// <returns>更新行数</returns>
public DataResult<int> Update(MaterialShelfType model)
{
DataResult<int> result = new DataResult<int>();
//基本信息
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 删除
/// <summary>
/// 删除信息
/// </summary>
/// <param name=""></param>
/// <returns>删除个数</returns>
public DataResult<int> Delete(string strs)
{
DataResult<int> result = new DataResult<int>();
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;
}
/// <summary>
/// 删除信息
/// </summary>
/// <param name="">信息</param>
/// <returns>删除个数</returns>
public int DeleteMaterialShelfType(MaterialShelfType model)
{
int count = 0;
try
{
count = new MaterialShelfTypeDAL().Delete(model);
return count;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
}
}