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.
456 lines
14 KiB
456 lines
14 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Common.Encrypt;
|
|
using QMFrameWork.Data;
|
|
using QMAPP.FJC.DAL.SendPlan;
|
|
using QMAPP.FJC.Entity.SendPlan;
|
|
using QMAPP.BLL;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.BLL.Dict;
|
|
using QMFrameWork.Log;
|
|
using QMAPP.FJC.Entity;
|
|
namespace QMAPP.FJC.BLL.SendPlan
|
|
{
|
|
/// <summary>
|
|
/// 模块编号:M14-1
|
|
/// 作 用:贴车单
|
|
/// 作 者:王庆男
|
|
/// 编写日期:2015年06月04日
|
|
///</summary>
|
|
public class SendPlanInfoBLL : BaseBLL
|
|
{
|
|
|
|
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="">条件</param>
|
|
/// <returns>信息</returns>
|
|
public SendPlanInfo Get(SendPlanInfo model)
|
|
{
|
|
try
|
|
{
|
|
return new SendPlanInfoDAL().Get(model);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <param name="page">数据页</param>
|
|
/// <returns>数据页</returns>
|
|
public DataPage GetList(SendPlanInfo condition, DataPage page)
|
|
{
|
|
try
|
|
{
|
|
return new SendPlanInfoDAL().GetList(condition, page);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 信息是否重复
|
|
/// <summary>
|
|
/// 判断名称是否存在
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
|
public bool ExistsSendPlanInfo(SendPlanInfo model)
|
|
{
|
|
try
|
|
{
|
|
return new SendPlanInfoDAL().ExistsSendPlanInfo(model);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
#region 插入信息
|
|
/// <summary>
|
|
/// 插入信息(单表)
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>插入行数</returns>
|
|
public int Insert(SendPlanInfo model)
|
|
{
|
|
try
|
|
{
|
|
//基本信息
|
|
model.PID = Guid.NewGuid().ToString();
|
|
model.CREATEUSER = this.LoginUser.UserID;
|
|
model.CREATEDATE = DateTime.Now;
|
|
model.UPDATEUSER = model.CREATEUSER;
|
|
model.UPDATEDATE = model.CREATEDATE;
|
|
SendPlanInfoDAL cmdDAL = new SendPlanInfoDAL();
|
|
if (ExistsSendPlanInfo(model) == true)
|
|
return -1;
|
|
return new SendPlanInfoDAL().Insert(model);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 插入信息(单表)
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>插入行数</returns>
|
|
public DataResult<int> InsertAndUpdateMain(SendPlanInfo model)
|
|
{
|
|
DataResult<int> result = new DataResult<int>();
|
|
result.IsSuccess = true;
|
|
try
|
|
{
|
|
//基本信息
|
|
model.PID = Guid.NewGuid().ToString();
|
|
model.CREATEUSER = this.LoginUser.UserID;
|
|
model.CREATEDATE = DateTime.Now;
|
|
model.UPDATEUSER = model.CREATEUSER;
|
|
model.UPDATEDATE = model.CREATEDATE;
|
|
foreach (var item in model.mainList)
|
|
{
|
|
item.SPID = model.PID;
|
|
item.SENDCODE = model.SENDCODE;
|
|
item.OUTFLAG = EnumGeter.OUTFLAG.OUTWAREHOUSE.GetHashCode().ToString();
|
|
}
|
|
SendPlanInfoDAL cmdDAL = new SendPlanInfoDAL();
|
|
result.Result = new SendPlanInfoDAL().InsertAndUpdateMain(model);
|
|
result.Msg = "操作成功!";
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogManager.LogHelper.Error(new LogInfo()
|
|
{
|
|
ErrorInfo = ex,
|
|
Tag = ex.StackTrace,
|
|
Info = "发运单插入异常!"
|
|
});
|
|
result.IsSuccess = false;
|
|
result.Ex = ex;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 插入信息(单表)
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>插入行数</returns>
|
|
public DataResult<int> UpdateMain(SendPlanInfo model)
|
|
{
|
|
DataResult<int> result = new DataResult<int>();
|
|
result.IsSuccess = true;
|
|
try
|
|
{
|
|
//基本信息
|
|
//model.PID = Guid.NewGuid().ToString();
|
|
model.CREATEUSER = this.LoginUser.UserID;
|
|
model.CREATEDATE = DateTime.Now;
|
|
model.UPDATEUSER = model.CREATEUSER;
|
|
model.UPDATEDATE = model.CREATEDATE;
|
|
foreach (var item in model.mainList)
|
|
{
|
|
item.SPID = model.PID;
|
|
item.SENDCODE = model.SENDCODE;
|
|
item.OUTFLAG = EnumGeter.OUTFLAG.OUTWAREHOUSE.GetHashCode().ToString();
|
|
}
|
|
SendPlanInfoDAL cmdDAL = new SendPlanInfoDAL();
|
|
result.Result = new SendPlanInfoDAL().UpdateMain(model);
|
|
result.Msg = "操作成功!";
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogManager.LogHelper.Error(new LogInfo()
|
|
{
|
|
ErrorInfo = ex,
|
|
Tag = ex.StackTrace,
|
|
Info = "发运单插入异常!"
|
|
});
|
|
result.IsSuccess = false;
|
|
result.Ex = ex;
|
|
}
|
|
return result;
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 更新信息
|
|
/// <summary>
|
|
/// 更新信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>更新行数</returns>
|
|
public int Update(SendPlanInfo model)
|
|
{
|
|
try
|
|
{
|
|
//if (ExistsSendPlanInfo(Model) == true)
|
|
//return -1;
|
|
//基本信息
|
|
model.UPDATEUSER = this.LoginUser.UserID;
|
|
return new SendPlanInfoDAL().Update(model);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 删除
|
|
/// <summary>
|
|
/// 删除信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>删除个数</returns>
|
|
public int Delete(string strs)
|
|
{
|
|
int count = 0;
|
|
string[] list = strs.Split(":".ToCharArray());
|
|
try
|
|
{
|
|
foreach (string str in list)
|
|
{
|
|
count += this.DeleteSendPlanInfo(new SendPlanInfo { PID = str });
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 删除信息
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>删除个数</returns>
|
|
public int DeleteSendPlanInfo(SendPlanInfo model)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
count = new SendPlanInfoDAL().Delete(model);
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 导出数据
|
|
/// <summary>
|
|
/// 获取导出的数据
|
|
/// </summary>
|
|
/// <param name="user">查询条件</param>
|
|
/// <returns>数据</returns>
|
|
public DataTable GetExportData(SendPlanInfo model)
|
|
{
|
|
try
|
|
{
|
|
return new SendPlanInfoDAL().GetExportData(model);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 导入数据
|
|
public DataResult<ImportMessage> GetImportData(List<SendPlanInfo> list)
|
|
{
|
|
DataResult<ImportMessage> result = new DataResult<ImportMessage>();
|
|
SendPlanInfoDAL cmDal = new SendPlanInfoDAL();
|
|
List<SendPlanInfo> List = new List<SendPlanInfo>();
|
|
int index = 0;
|
|
try
|
|
{
|
|
result.Result = new ImportMessage();
|
|
result.Result.Errors = new List<RowError>();
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//状态判断
|
|
foreach (SendPlanInfo ma in list)
|
|
{
|
|
index++;
|
|
if (string.IsNullOrEmpty(ma.InfoError) == false)
|
|
{
|
|
ma.PID = null;
|
|
result.Result.failureNum += 1;
|
|
continue;
|
|
}
|
|
//修改改时根据主键等信息获取详细内容信息
|
|
SendPlanInfo oldInfo = cmDal.Get(ma);
|
|
if (oldInfo != null)
|
|
{
|
|
//更新
|
|
ma.PID = oldInfo.PID;
|
|
ma.CREATEUSER = oldInfo.CREATEUSER;
|
|
ma.CREATEDATE = oldInfo.CREATEDATE;
|
|
ma.UPDATEUSER = this.LoginUser.UserID;
|
|
ma.UPDATEDATE = oldInfo.UPDATEDATE;
|
|
ma.IsNewInfo = false;
|
|
result.Result.updateNum += 1;
|
|
}
|
|
else
|
|
{
|
|
//新增
|
|
oldInfo = new SendPlanInfo();
|
|
ma.PID = Guid.NewGuid().ToString();
|
|
ma.CREATEUSER = this.LoginUser.UserID;
|
|
ma.CREATEDATE = DateTime.Now;
|
|
ma.UPDATEUSER = ma.CREATEUSER;
|
|
ma.UPDATEDATE = ma.CREATEDATE;
|
|
ma.IsNewInfo = true;
|
|
result.Result.insertNum += 1;
|
|
}
|
|
List.Add(ma);
|
|
}
|
|
}
|
|
//导入
|
|
cmDal.GetImportData(List);
|
|
result.Msg = "导入成功";
|
|
result.IsSuccess = true;
|
|
return result;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
result.IsSuccess = false;
|
|
result.Ex = ex;
|
|
return result;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 获取列表(发车统计分析)
|
|
/// <summary>
|
|
/// 获取列表(发车统计分析)
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <returns>信息集合</returns>
|
|
public DataResult<IList<SendPlanInfo>> GetSendStatisticsList(SendPlanInfo condition)
|
|
{
|
|
DataResult<IList<SendPlanInfo>> result = new DataResult<IList<SendPlanInfo>>();
|
|
try
|
|
{
|
|
result.Result = new SendPlanInfoDAL().GetListGroupBy(condition);
|
|
|
|
#region 转换颜色、高低配显示类型
|
|
DictManageBLL dictColorBll = new DictManageBLL(DictKind.COLOR);
|
|
DictManageBLL dictHAandLBll = new DictManageBLL(DictKind.HAndL);
|
|
|
|
foreach (SendPlanInfo m in result.Result)
|
|
{
|
|
//颜色
|
|
m.COLORCODE = dictColorBll.GetDictValue(m.COLORCODE);
|
|
//高低配
|
|
m.VERSION = dictHAandLBll.GetDictValue(m.VERSION);
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
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;
|
|
}
|
|
|
|
|
|
#region 导出数据(发车统计分析)
|
|
/// <summary>
|
|
/// 获取导出的数据(发车统计分析)
|
|
/// </summary>
|
|
/// <param name="user">查询条件</param>
|
|
/// <returns>数据</returns>
|
|
public DataResult<DataTable> GetSendStatisticsExportData(SendPlanInfo model)
|
|
{
|
|
DataResult<DataTable> result = new DataResult<DataTable>();
|
|
try
|
|
{
|
|
result.Result = new SendPlanInfoDAL().GetSendStatisticsExportData(model);
|
|
|
|
#region 转换颜色、高低配显示类型
|
|
DictManageBLL dictColorBll = new DictManageBLL(DictKind.COLOR);
|
|
DictManageBLL dictHAandLBll = new DictManageBLL(DictKind.HAndL);
|
|
|
|
foreach (DataRow item in result.Result.Rows)
|
|
{
|
|
//颜色
|
|
item["COLORCODE"] = dictColorBll.GetDictValue(item["COLORCODE"].ToString());
|
|
//高低配
|
|
item["VERSION"] = dictHAandLBll.GetDictValue(item["VERSION"].ToString());
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
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
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|