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.
146 lines
4.7 KiB
146 lines
4.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.BLL;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.Entity.FIS;
|
|
using QMFrameWork.Data;
|
|
using QMAPP.FJC.BLL.Dict;
|
|
using QMFrameWork.Log;
|
|
using QMAPP.FJC.Entity;
|
|
using QMAPP.FJC.DAL.FIS;
|
|
using System.Data;
|
|
using QMAPP.FJC.Entity.FileCopy.FIS;
|
|
|
|
namespace QMAPP.FJC.BLL.FIS
|
|
{
|
|
public class FISOrderSendBLL : BaseBLL
|
|
{
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <param name="page">数据页</param>
|
|
/// <returns>数据页</returns>
|
|
public DataResult<DataPage> GetList(FISOrder condition, DataPage page)
|
|
{
|
|
DataResult<DataPage> result = new DataResult<DataPage>();
|
|
try
|
|
{
|
|
//获取信息列表
|
|
page = new FISOrderSendDAL().GetList(condition, page);
|
|
|
|
#region 转换状态显示类型
|
|
List<FISOrder> fisOrderList = page.Result as List<FISOrder>;
|
|
//处理字典信息
|
|
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 = "FIS 计划信息逻辑层-获取列表!"
|
|
});
|
|
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(FISOrder model)
|
|
{
|
|
DataResult<DataTable> result = new DataResult<DataTable>();
|
|
try
|
|
{
|
|
result.IsSuccess = true;
|
|
result.Result = new FISOrderSendDAL().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 = "FIS计划查询信息导出错误!"
|
|
});
|
|
result.IsSuccess = false;
|
|
result.Msg = "FIS计划查询信息导出错误!";
|
|
}
|
|
return result;
|
|
}
|
|
#endregion
|
|
|
|
#region 获取FIS发货信息列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <param name="page">数据页</param>
|
|
/// <returns>数据页</returns>
|
|
public DataResult<List<FISOrederSendDetial>> GetFISOrederSendDetialList(string id)
|
|
{
|
|
DataResult<List<FISOrederSendDetial>> result = new DataResult<List<FISOrederSendDetial>>();
|
|
try
|
|
{
|
|
List<FISOrederSendDetial> list = new List<FISOrederSendDetial>();
|
|
result.IsSuccess = true;
|
|
list = new FISOrderSendDAL().GetFISOrederSendDetialList(id);
|
|
|
|
//处理字典信息
|
|
DictManageBLL dictSCANSTATE = new DictManageBLL(DictKind.STATE);
|
|
|
|
foreach (var info in list)
|
|
{
|
|
//替换物料类别显示值
|
|
info.STATE = dictSCANSTATE.GetDictValue(info.STATE);
|
|
}
|
|
|
|
result.Result = list;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogManager.LogHelper.Error(new LogInfo()
|
|
{
|
|
ErrorInfo = ex,
|
|
Tag = ex.StackTrace,
|
|
Info = "获取FIS发货信息错误!"
|
|
});
|
|
result.IsSuccess = false;
|
|
result.Msg = "获取FIS发货信息错误!";
|
|
}
|
|
return result;
|
|
}
|
|
#endregion
|
|
}
|
|
}
|
|
|