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.
120 lines
4.0 KiB
120 lines
4.0 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Data;
|
||
|
using QMAPP.BLL;
|
||
|
using QMAPP.FJC.BLL.Dict;
|
||
|
using QMAPP.FJC.DAL.EquipMentAlarmManage;
|
||
|
using QMAPP.FJC.Entity;
|
||
|
using QMAPP.FJC.Entity.WarnManage;
|
||
|
using QMAPP.KB.Entity;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMFrameWork.Log;
|
||
|
|
||
|
namespace QMAPP.FJC.BLL.EquipMentAlarmManage
|
||
|
{
|
||
|
///</summary>
|
||
|
/// 模块编号:M6-2
|
||
|
/// 作 用:设备停机记录查询
|
||
|
/// 作 者:王丹丹
|
||
|
/// 编写日期:2015年06月18日
|
||
|
///</summary>
|
||
|
public class EquipMentMaintainSearchBLL : BaseBLL
|
||
|
{
|
||
|
#region 获取列表
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="condition">条件</param>
|
||
|
/// <param name="page">数据页</param>
|
||
|
/// <returns>数据页</returns>
|
||
|
public DataResult<DataPage> GetList(EquipMentMaintain condition, DataPage page)
|
||
|
{
|
||
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
||
|
try
|
||
|
{
|
||
|
DataPage dataPage = new EquipMentMaintainDAL().GetList(condition, page);
|
||
|
|
||
|
#region 转换报警类别、工序类别显示类型
|
||
|
List<EquipMentMaintain> List = dataPage.Result as List<EquipMentMaintain>;
|
||
|
|
||
|
DictManageBLL dictAlarmTypeBll = new DictManageBLL(DictKind.WARNTYPE);
|
||
|
DictManageBLL dictProcessTypeBll = new DictManageBLL(DictKind.PROCESSTYPE);
|
||
|
|
||
|
foreach (EquipMentMaintain m in List)
|
||
|
{
|
||
|
//报警类别
|
||
|
m.WARNTYPE = dictAlarmTypeBll.GetDictValue(m.WARNTYPE);
|
||
|
//工序类别
|
||
|
m.PROCESSTYPE = dictProcessTypeBll.GetDictValue(m.PROCESSTYPE);
|
||
|
}
|
||
|
#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;
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 导出数据
|
||
|
/// <summary>
|
||
|
/// 获取导出的数据
|
||
|
/// </summary>
|
||
|
/// <param name="user">查询条件</param>
|
||
|
/// <returns>数据</returns>
|
||
|
public DataResult<DataTable> GetExportData(EquipMentMaintain model)
|
||
|
{
|
||
|
DataResult<DataTable> result = new DataResult<DataTable>();
|
||
|
try
|
||
|
{
|
||
|
DataTable dt = new EquipMentMaintainDAL().GetExportData(model);
|
||
|
|
||
|
#region 转换报警类别、工序类别显示类型
|
||
|
|
||
|
DictManageBLL dictAlarmTypeBll = new DictManageBLL(DictKind.WARNTYPE);
|
||
|
DictManageBLL dictProcessTypeBll = new DictManageBLL(DictKind.PROCESSTYPE);
|
||
|
|
||
|
foreach (DataRow item in dt.Rows)
|
||
|
{
|
||
|
//报警类别
|
||
|
item["WARNTYPE"] = dictAlarmTypeBll.GetDictValue(item["WARNTYPE"].ToString());
|
||
|
//工序类别
|
||
|
item["PROCESSTYPE"] = dictProcessTypeBll.GetDictValue(item["PROCESSTYPE"].ToString());
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
result.Result = dt;
|
||
|
}
|
||
|
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
|
||
|
|
||
|
}
|
||
|
}
|