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.
112 lines
3.4 KiB
112 lines
3.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.BLL;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.Entity.EnergyManage;
|
|
using System.Data;
|
|
using QMAPP.FJC.DAL.EnergyManage;
|
|
using QMFrameWork.Log;
|
|
using QMFrameWork.Data;
|
|
using QMAPP.FJC.Entity;
|
|
|
|
namespace QMAPP.FJC.BLL.EnergyManage
|
|
{
|
|
public class MeterReadingsBLL : BaseBLL
|
|
{
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <param name="page">数据页</param>
|
|
/// <returns>数据页</returns>
|
|
public DataResult<DataPage> GetList(Meter condition, DataPage page)
|
|
{
|
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
|
try
|
|
{
|
|
//获取信息列表
|
|
DataPage dataPage = new MeterReadingsDAL().GetList(condition, page);
|
|
|
|
#region 转换状态显示类型
|
|
//List<Meter> fisOrderList = page.Result as List<Meter>;
|
|
////处理字典信息
|
|
//DictManageBLL dictSCANSTATE = new DictManageBLL(DictKind.SCANSTATE);
|
|
|
|
//foreach (var info in fisOrderList)
|
|
//{
|
|
// info.SCANSTATE = dictSCANSTATE.GetDictValue(info.SCANSTATE);
|
|
//}
|
|
#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(Meter model)
|
|
{
|
|
DataResult<DataTable> result = new DataResult<DataTable>();
|
|
try
|
|
{
|
|
result.IsSuccess = true;
|
|
result.Result = new MeterReadingsDAL().GetExportData(model);
|
|
|
|
////处理字典信息
|
|
//DictManageBLL dictSCANSTATE = new DictManageBLL(DictKind.SCANSTATE);
|
|
|
|
//foreach (DataRow dr in result.Result.Rows)
|
|
//{
|
|
// //替换状态类别显示值
|
|
// dr["SCANSTATE"] = dictSCANSTATE.GetDictValue(dr["SCANSTATE"].ToString());
|
|
//}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogManager.LogHelper.Error(new LogInfo()
|
|
{
|
|
ErrorInfo = ex,
|
|
Tag = ex.StackTrace,
|
|
Info = "设备耗能统计信息导出错误!"
|
|
});
|
|
result.IsSuccess = false;
|
|
result.Msg = "FIS设备耗能统计信息导出错误!";
|
|
}
|
|
return result;
|
|
}
|
|
#endregion
|
|
|
|
public MeterReadings GetLastReading(string p)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Insert(MeterReadings newreading)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
|