using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using QMAPP.BLL;
using QMAPP.Entity;
using QMAPP.MD.BLL.Dict;
using QMAPP.MD.DAL;
using QMAPP.MD.Entity;
using QMFrameWork.Data;
namespace QMAPP.MD.BLL
{
///
/// 模块编号:
/// 作 用:班组成员
/// 作 者:周晓东
/// 编写日期:2017年11月21日
///
public class TeamMemberBLL : BaseBLL
{
#region 获取信息
///
/// 获取信息
///
/// 条件
/// 信息
public DataResult Get(TeamMemberEntity model)
{
DataResult result = new DataResult();
try
{
result.Result = new TeamMemberDAL().Get(model);
}
catch (Exception ex)
{
result.IsSuccess = false;
result.Msg = Resource.SystemException;
throw ex;
}
result.IsSuccess = true;
return result;
}
public List GetAllTeamMember(TeamMemberEntity condition)
{
return new TeamMemberDAL().GetAllTeamMember(condition);
}
#endregion
#region 获取列表
///
/// 获取列表
///
/// 条件
/// 数据页
/// 数据页
//public DataResult GetList(TeamMemberEntity condition, DataPage page)
//{
// DataResult result = new DataResult();
// try
// {
// //获取班组信息列表
// DataPage dataPage = new TeamMemberDAL().GetList(condition, page);
// #region 转换
// List InfoList = dataPage.Result as List;
// var configDetailList = new ConfigDetailBLL().GetAllList("CALL_TYPE");
// foreach (TeamMemberEntity m in InfoList)
// {
// //呼叫类型
// var configDetail = configDetailList.FirstOrDefault(x => x.DetailTypeCode == m.TEAMTYPE.Trim());
// if (configDetail != null)
// m.TEAMTYPE_TXT = configDetail.DetailTypeName;
// //m.TEAMTYPE_TXT = dictProcessTypeBll.GetDictValue(m.TEAMTYPE);
// }
// #endregion
// result.Result = dataPage;
// }
// catch (Exception ex)
// {
// result.IsSuccess = false;
// result.Msg = Resource.SystemException;
// throw ex;
// }
// result.IsSuccess = true;
// return result;
//}
public DataPage GetList(TeamMemberEntity condition, DataPage page)
{
//DataResult result = new DataResult();
try
{
//获取班组信息列表
DataPage dataPage = new TeamMemberDAL().GetList(condition, page);
#region 转换
List InfoList = dataPage.Result as List;
var configDetailList = new ConfigDetailBLL().GetAllList("CALL_TYPE");
foreach (TeamMemberEntity m in InfoList)
{
//呼叫类型
var configDetail = configDetailList.FirstOrDefault(x => x.DetailTypeCode == m.TEAMTYPE.Trim());
if (configDetail != null)
m.TEAMTYPE_TXT = configDetail.DetailTypeName;
//m.TEAMTYPE_TXT = dictProcessTypeBll.GetDictValue(m.TEAMTYPE);
}
#endregion
return dataPage;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 信息是否重复
///
/// 判断名称是否存在
///
///
/// true:已存在;fasel:不存在。
public bool ExistsTeamMember(TeamMemberEntity model)
{
try
{
return new TeamMemberDAL().ExistsTeamMember(model);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 插入信息
///
/// 插入信息(单表)
///
/// 信息
/// 插入行数
//public int Insert(TeamMemberEntity model)
//{
// try
// {
// //基本信息
// model.PID = Guid.NewGuid().ToString();
// model.CREATEUSER = this.LoginUser.UserID;
// model.CREATEDATE = DateTime.Now;
// model.UPDATEUSER = model.CREATEUSER;
// model.UPDATEDATE = model.CREATEDATE;
// TeamMemberDAL cmdDAL = new TeamMemberDAL();
// if (ExistsTeamMember(model) == true)
// return -1;
// return new TeamMemberDAL().Insert(model);
// }
// catch (Exception ex)
// {
// throw ex;
// }
//}
public DataResult Insert(TeamMemberEntity model)
{
DataResult result = new DataResult();
//基本信息
model.PID = Guid.NewGuid().ToString();
model.CREATEUSER = this.LoginUser.UserID;
model.CREATEDATE = DateTime.Now;
model.UPDATEUSER = model.CREATEUSER;
model.UPDATEDATE = model.CREATEDATE;
try
{
//if (ExistsTeam(model) == true)
//{
// result.IsSuccess = false;
// result.Msg = Resource.TeamCodeIsHave;
// return result;
//}
result.Result = new TeamMemberDAL().Insert(model);
}
catch (Exception ex)
{
result.IsSuccess = false;
result.Msg = Resource.SystemException;
throw ex;
}
result.IsSuccess = true;
return result;
}
#endregion
#region 更新信息
///
/// 更新信息
///
///
/// 更新行数
//public int Update(TeamMemberEntity model)
//{
// try
// {
// //if (ExistsTeamMember(Model) == true)
// //return -1;
// //基本信息
// model.UPDATEUSER = this.LoginUser.UserID;
// return new TeamMemberDAL().Update(model);
// }
// catch (Exception ex)
// {
// throw ex;
// }
//}
public DataResult Update(TeamMemberEntity model)
{
DataResult result = new DataResult();
//基本信息
model.UPDATEUSER = this.LoginUser.UserID;
model.UPDATEDATE = DateTime.Now;
try
{
//if (ExistsTeam(model) == true)
//{
// result.IsSuccess = false;
// result.Msg = Resource.TeamCodeIsHave;
// return result;
//}
result.Result = new TeamMemberDAL().Update(model);
}
catch (Exception ex)
{
result.IsSuccess = false;
result.Msg = Resource.SystemException;
throw ex;
}
result.IsSuccess = true;
return result;
}
#endregion
#region 删除
///
/// 删除信息
///
///
/// 删除个数
//public int Delete(string strs)
//{
// int count = 0;
// string[] list = strs.Split(":".ToCharArray());
// try
// {
// foreach (string str in list)
// {
// count += this.DeleteTeamMember(new TeamMemberEntity { PID = str });
// }
// return count;
// }
// catch (Exception ex)
// {
// throw ex;
// }
//}
public DataResult Delete(string strs)
{
DataResult result = new DataResult();
string[] list = strs.Split(":".ToCharArray());
try
{
foreach (string str in list)
{
result.Result += this.DeleteTeamMember(new TeamMemberEntity { PID = str });
}
}
catch (Exception ex)
{
result.IsSuccess = false;
result.Msg = Resource.SystemException;
throw ex;
}
result.IsSuccess = true;
return result;
}
///
/// 删除信息
///
/// 信息
/// 删除个数
public int DeleteTeamMember(TeamMemberEntity model)
{
int count = 0;
try
{
count = new TeamMemberDAL().Delete(model);
return count;
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 导出数据
///
/// 获取导出的数据
///
/// 查询条件
/// 数据
public DataTable GetExportData(TeamMemberEntity model)
{
try
{
return new TeamMemberDAL().GetExportData(model);
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region 导入数据
public DataResult GetImportData(List list)
{
DataResult result = new DataResult();
TeamMemberDAL cmDal = new TeamMemberDAL();
List List = new List();
int index = 0;
try
{
result.Result = new ImportMessage();
result.Result.Errors = new List();
using (IDataSession session = AppDataFactory.CreateMainSession())
{
//状态判断
foreach (TeamMemberEntity ma in list)
{
index++;
if (string.IsNullOrEmpty(ma.InfoError) == false)
{
ma.PID = null;
result.Result.failureNum += 1;
continue;
}
//修改改时根据主键等信息获取详细内容信息
TeamMemberEntity 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 TeamMemberEntity();
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
}
}