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.
99 lines
3.0 KiB
99 lines
3.0 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.BLL;
|
||
|
using QMAPP.Entity;
|
||
|
using QMAPP.FJC.Entity.Operation;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMAPP.FJC.DAL.Operation;
|
||
|
using System.Data;
|
||
|
using QMFrameWork.Log;
|
||
|
using QMAPP.FJC.Entity;
|
||
|
using QMAPP.FJC.Entity.FeedInManage;
|
||
|
|
||
|
namespace QMAPP.FJC.BLL.Operation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 20171023gzf
|
||
|
/// </summary>
|
||
|
public class MainProductCountBLL : BaseBLL
|
||
|
{
|
||
|
|
||
|
#region 获取列表
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="condition">条件</param>
|
||
|
/// <param name="page">数据页</param>
|
||
|
/// <returns>数据页</returns>
|
||
|
public DataResult<DataPage> GetList(Epidermis condition, DataPage page)
|
||
|
{
|
||
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
||
|
try
|
||
|
{
|
||
|
//获取信息列表
|
||
|
page = new MainProductCountDAL().GetList(condition, page);
|
||
|
|
||
|
#region 转换状态显示类型
|
||
|
//List<Epidermis> fisOrderList = page.Result as List<Epidermis>;
|
||
|
////处理字典信息
|
||
|
//DictManageBLL dictSCANSTATE = new DictManageBLL(DictKind.SCANSTATE);
|
||
|
|
||
|
//foreach (var info in fisOrderList)
|
||
|
//{
|
||
|
// info.SCANSTATE = dictSCANSTATE.GetDictValue(info.SCANSTATE);
|
||
|
//}
|
||
|
#endregion
|
||
|
|
||
|
result.Result = page;
|
||
|
}
|
||
|
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(Epidermis model)
|
||
|
{
|
||
|
DataResult<DataTable> result = new DataResult<DataTable>();
|
||
|
try
|
||
|
{
|
||
|
result.IsSuccess = true;
|
||
|
result.Result = new MainProductCountDAL().GetExportData(model);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
LogManager.LogHelper.Error(new LogInfo()
|
||
|
{
|
||
|
ErrorInfo = ex,
|
||
|
Tag = ex.StackTrace,
|
||
|
Info = "成品统计信息导出错误!"
|
||
|
});
|
||
|
result.IsSuccess = false;
|
||
|
result.Msg = "成品统计信息导出错误!";
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
#endregion
|
||
|
}
|
||
|
}
|