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.
361 lines
11 KiB
361 lines
11 KiB
4 years ago
|
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 QMAPP.Entity;
|
||
|
using QMFrameWork.Log;
|
||
|
using QMAPP.FJC.Entity;
|
||
|
|
||
|
namespace QMAPP.FJC.BLL.Basic
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块编号:M2-6
|
||
|
/// 作 用:工序名称信息逻辑层
|
||
|
/// 作 者:王丹丹
|
||
|
/// 编写日期:2015年05月29日
|
||
|
///</summary>
|
||
|
public class ProcessInfoBLL : BaseBLL
|
||
|
{
|
||
|
#region 获取信息
|
||
|
/// <summary>
|
||
|
/// 获取信息
|
||
|
/// </summary>
|
||
|
/// <param name="">条件</param>
|
||
|
/// <returns>信息</returns>
|
||
|
public DataResult<ProcessInfo> Get(ProcessInfo model)
|
||
|
{
|
||
|
DataResult<ProcessInfo> result = new DataResult<ProcessInfo>();
|
||
|
try
|
||
|
{
|
||
|
result.Result = new ProcessInfoDAL().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(ProcessInfo condition, DataPage page)
|
||
|
{
|
||
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
||
|
try
|
||
|
{
|
||
|
//获取信息列表
|
||
|
DataPage dataPage = new ProcessInfoDAL().GetList(condition, page);
|
||
|
|
||
|
#region 转换操作类别显示类型
|
||
|
List<ProcessInfo> processInfoList = dataPage.Result as List<ProcessInfo>;
|
||
|
|
||
|
DictManageBLL dictPoerateTypeBll = new DictManageBLL(DictKind.OPERATETYPE);
|
||
|
|
||
|
foreach (ProcessInfo m in processInfoList)
|
||
|
{
|
||
|
//操作类别
|
||
|
m.OPERATETYPETXT = dictPoerateTypeBll.GetDictValue(m.OPERATETYPE);
|
||
|
}
|
||
|
|
||
|
#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<ProcessInfo> GetAllList(ProcessInfo condition)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
//获取物料信息列表
|
||
|
List<ProcessInfo> list = new ProcessInfoDAL().GetList(condition);
|
||
|
return list;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 信息是否重复
|
||
|
/// <summary>
|
||
|
/// 判断名称是否存在
|
||
|
/// </summary>
|
||
|
/// <param name="info"></param>
|
||
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
||
|
public DataResult<bool> ExistsProcess(ProcessInfo model)
|
||
|
{
|
||
|
DataResult<bool> result=new DataResult<bool>();
|
||
|
try
|
||
|
{
|
||
|
if (new ProcessInfoDAL().ExistsProcessName(model) == true)
|
||
|
{
|
||
|
result.IsSuccess=false;
|
||
|
result.Msg =Resource.ProcessNameIsHave;
|
||
|
return result;
|
||
|
}
|
||
|
if (new ProcessInfoDAL().ExistsProcessType(model) == true)
|
||
|
{
|
||
|
result.IsSuccess = false;
|
||
|
result.Msg = Resource.ProcessTypeIsHave;
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
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> Insert(ProcessInfo model)
|
||
|
{
|
||
|
DataResult<int> result = new DataResult<int>();
|
||
|
ProcessInfoDAL cmdDAL = new ProcessInfoDAL();
|
||
|
//基本信息
|
||
|
model.PID = Guid.NewGuid().ToString();
|
||
|
model.CREATEUSER = this.LoginUser.UserID;
|
||
|
model.CREATEDATE = DateTime.Now;
|
||
|
model.UPDATEUSER = model.CREATEUSER;
|
||
|
model.UPDATEDATE = model.CREATEDATE;
|
||
|
try
|
||
|
{
|
||
|
DataResult<bool> isExist = new DataResult<bool>();
|
||
|
isExist = this.ExistsProcess(model);
|
||
|
if (isExist.IsSuccess == false)
|
||
|
{
|
||
|
result.IsSuccess = false;
|
||
|
result.Msg = isExist.Msg;
|
||
|
return result;
|
||
|
}
|
||
|
result.Result = new ProcessInfoDAL().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(ProcessInfo model)
|
||
|
{
|
||
|
DataResult<int> result = new DataResult<int>();
|
||
|
//基本信息
|
||
|
model.UPDATEUSER = this.LoginUser.UserID;
|
||
|
try
|
||
|
{
|
||
|
DataResult<bool> isExist = new DataResult<bool>();
|
||
|
isExist = this.ExistsProcess(model);
|
||
|
if (isExist.IsSuccess == false)
|
||
|
{
|
||
|
result.IsSuccess = false;
|
||
|
result.Msg = isExist.Msg;
|
||
|
return result;
|
||
|
}
|
||
|
result.Result = new ProcessInfoDAL().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.DeleteProcessInfo(new ProcessInfo { 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 DeleteProcessInfo(ProcessInfo model)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
count = new ProcessInfoDAL().Delete(model);
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取工序下拉列表
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
/// <param name="condition"></param>
|
||
|
/// <returns></returns>
|
||
|
public DataResult<List<ProcessInfo>> GetProcessInfoBasicList(ProcessInfo condition)
|
||
|
{
|
||
|
DataResult<List<ProcessInfo>> result = new DataResult<List<ProcessInfo>>();
|
||
|
try
|
||
|
{
|
||
|
result.Result = new ProcessInfoDAL().GetProcessInfoList(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
|
||
|
|
||
|
#region 获取工序下拉列表数据
|
||
|
/// <summary>
|
||
|
/// 获取工序下拉列表数据
|
||
|
/// </summary>
|
||
|
/// <param name="model"></param>
|
||
|
/// <returns></returns>
|
||
|
public List<ProcessInfo> GetProcessInfoList(ProcessInfo model)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return new ProcessInfoDAL().GetProcessInfoList(model);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogManager.LogHelper.Error(new LogInfo()
|
||
|
{
|
||
|
ErrorInfo = ex,
|
||
|
Tag = ex.StackTrace,
|
||
|
Info = "工序信息逻辑层-获取工序下拉列表数据!"
|
||
|
});
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|