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.
327 lines
10 KiB
327 lines
10 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Log;
|
|
using QMAPP.FJC.Entity;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.DAL.Basic;
|
|
using QMAPP.FJC.Entity.Basic;
|
|
using QMFrameWork.Data;
|
|
using QMAPP.BLL;
|
|
|
|
namespace QMAPP.FJC.BLL.Basic
|
|
{
|
|
public class WorkCenterBLL : BaseBLL
|
|
{
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="">条件</param>
|
|
/// <returns>信息</returns>
|
|
public DataResult<WorkCenter> Get(WorkCenter model)
|
|
{
|
|
DataResult<WorkCenter> result = new DataResult<WorkCenter>();
|
|
try
|
|
{
|
|
result.Result = new WorkCenterDAL().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(WorkCenter condition, DataPage page)
|
|
{
|
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
|
try
|
|
{
|
|
DataPage dataPage = new WorkCenterDAL().GetList(condition, page);
|
|
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;
|
|
}
|
|
#endregion
|
|
|
|
#region 信息是否重复
|
|
/// <summary>
|
|
/// 判断工作中心编号是否存在
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
|
public bool ExistsWorkCenter(WorkCenter model)
|
|
{
|
|
try
|
|
{
|
|
return new WorkCenterDAL().ExistsWorkCenter(model);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 插入信息
|
|
/// <summary>
|
|
/// 插入信息(单表)
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>插入行数</returns>
|
|
public DataResult<int> Insert(WorkCenter model)
|
|
{
|
|
DataResult<int> result = new DataResult<int>();
|
|
//基本信息
|
|
model.PID = Guid.NewGuid().ToString();
|
|
model.FLAGDEL = "0";
|
|
model.CREATEUSR = this.LoginUser.UserID;
|
|
model.CREATEDATE = DateTime.Now;
|
|
model.UPDATEUSR = model.CREATEUSR;
|
|
model.UPDATEDATE = model.CREATEDATE;
|
|
WorkCenterDAL cmdDAL = new WorkCenterDAL();
|
|
try
|
|
{
|
|
if (ExistsWorkCenter(model) == true)
|
|
{
|
|
result.IsSuccess = false;
|
|
result.Msg = Resource.MaterielCodeIsHave;
|
|
return result;
|
|
}
|
|
result.Result = new WorkCenterDAL().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(WorkCenter model)
|
|
{
|
|
DataResult<int> result = new DataResult<int>();
|
|
model.UPDATEUSR = this.LoginUser.UserID;
|
|
try
|
|
{
|
|
if (ExistsWorkCenter(model) == true)
|
|
{
|
|
result.IsSuccess = false;
|
|
result.Msg = Resource.MaterielCodeIsHave;
|
|
return result;
|
|
}
|
|
//if (model.Details != null)
|
|
//{
|
|
// foreach (Equipment detail in model.Details)
|
|
// {
|
|
// detail.PID = Guid.NewGuid().ToString();
|
|
// detail.WORKCENTER_PID = model.PID;
|
|
// }
|
|
//}
|
|
result.Result = new WorkCenterDAL().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)
|
|
{
|
|
int count = 0;
|
|
string[] list = strs.Split(":".ToCharArray());
|
|
DataResult<int> result = new DataResult<int>();
|
|
try
|
|
{
|
|
foreach (string str in list)
|
|
{
|
|
count += this.DeleteWorkCenter(new WorkCenter { PID = str });
|
|
}
|
|
if (count == 0)
|
|
{
|
|
result.IsSuccess = false;
|
|
return result;
|
|
}
|
|
result.Result = count;
|
|
result.IsSuccess = true;
|
|
return result;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 删除信息
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>删除个数</returns>
|
|
public int DeleteWorkCenter(WorkCenter model)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
count = new WorkCenterDAL().Delete(model);
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
//#region 获取工作中心与设备关联信息
|
|
|
|
///// <summary>
|
|
///// 获取工作中心与设备关联信息
|
|
///// </summary>
|
|
///// <param name="user">条件</param>
|
|
///// <returns>用户信息</returns>
|
|
//public List<WcWithEquipment> GetWcWithEquipmentList(WcWithEquipment equipment)
|
|
//{
|
|
// try
|
|
// {
|
|
// return new WorkCenterDAL().GetWcWithEquipmentList(equipment);
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// throw ex;
|
|
// }
|
|
//}
|
|
|
|
//#endregion
|
|
|
|
//#region 保存配置的数据权限
|
|
///// <summary>
|
|
///// 保存配置的数据权限
|
|
///// </summary>
|
|
///// <param name="">信息</param>
|
|
///// <returns>插入行数</returns>
|
|
//public int DataPowerSave(WorkCenter workcenter)
|
|
//{
|
|
|
|
// WorkCenterDAL wcDAL = new WorkCenterDAL();
|
|
// try
|
|
// {
|
|
// List<WcWithEquipment> wmList = wcDAL.GetWcWithEquipmentList(new WcWithEquipment { WORKCENTERPID = workcenter.PID });
|
|
// using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
// {
|
|
// session.OpenTs();
|
|
// session.Delete<WcWithEquipment>(wmList);
|
|
// if (workcenter.EQUIPMENT != null)
|
|
// {
|
|
// session.Insert<WcWithEquipment>(workcenter.EQUIPMENT);
|
|
// }
|
|
// session.CommitTs();
|
|
// }
|
|
// }
|
|
// catch (Exception ex)
|
|
// {
|
|
// ;
|
|
// throw ex;
|
|
// }
|
|
// return 0;
|
|
//}
|
|
//#endregion
|
|
|
|
#region 获取工作中心列表(下拉列表使用)
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="condition"></param>
|
|
/// <returns></returns>
|
|
public DataResult<List<WorkCenter>> GetWorkCenterList(WorkCenter condition)
|
|
{
|
|
DataResult<List<WorkCenter>> result = new DataResult<List<WorkCenter>>();
|
|
try
|
|
{
|
|
result.Result = new WorkCenterDAL().GetWorkCenterList(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
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|