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.
463 lines
16 KiB
463 lines
16 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Data;
|
||
|
using System.Text;
|
||
|
using System.Linq;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMAPP.Entity;
|
||
|
using QMAPP.FJC.Entity.QT;
|
||
|
|
||
|
namespace QMAPP.FJC.DAL.QT
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:物料信息绑定关系
|
||
|
/// 作 者:张鹏
|
||
|
/// 编写日期:2017年09月29日
|
||
|
/// </summary>
|
||
|
public class MaterialBindingDAL
|
||
|
{
|
||
|
|
||
|
#region 获取信息
|
||
|
/// <summary>
|
||
|
/// 获取信息
|
||
|
/// </summary>
|
||
|
/// <param name="">条件</param>
|
||
|
/// <returns>*信息</returns>
|
||
|
public MaterialBinding Get(MaterialBinding info)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//获取信息
|
||
|
info = session.Get<MaterialBinding>(info);
|
||
|
}
|
||
|
return info;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取列表
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="condition">条件</param>
|
||
|
/// <param name="page">数据页</param>
|
||
|
/// <returns>数据页</returns>
|
||
|
public DataPage GetList(MaterialBinding condition, DataPage page)
|
||
|
{
|
||
|
string sql = null;
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
sql = this.GetQuerySql(condition, ref parameters);
|
||
|
//分页关键字段及排序
|
||
|
page.KeyName = "PID";
|
||
|
if (string.IsNullOrEmpty(page.SortExpression))
|
||
|
page.SortExpression = "UPDATEDATE DESC";
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
page = session.GetDataPage<MaterialBinding>(sql, parameters.ToArray(), page);
|
||
|
}
|
||
|
return page;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
//物料信息绑定关系
|
||
|
public DataPage GetMaterialBindingList(MaterialBinding condition, DataPage page)
|
||
|
{
|
||
|
string sql = null;
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
sql = this.GetQuerySqlMaterialBinding(condition, ref parameters);
|
||
|
//分页关键字段及排序
|
||
|
page.KeyName = "PID";
|
||
|
if (string.IsNullOrEmpty(page.SortExpression))
|
||
|
page.SortExpression = "BINDING_TYPE";
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
page = session.GetDataPage<MaterialBinding>(sql, parameters.ToArray(), page);
|
||
|
}
|
||
|
return page;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <returns>数据</returns>
|
||
|
public List<MaterialBinding> GetBindingList(string bindingtype,string targetcode)
|
||
|
{
|
||
|
StringBuilder sql = new StringBuilder() ;
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
sql.AppendLine("SELECT * FROM [T_QT_MATERIAL_BINDING] WHERE [BINDING_TYPE]=@bindingtype AND [TARGET_CODE]=@targetcode");
|
||
|
parameters.Add(new DataParameter("bindingtype", bindingtype));
|
||
|
parameters.Add(new DataParameter("targetcode", targetcode));
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
return session.GetList<MaterialBinding>(sql.ToString(), parameters.ToArray()).ToList();
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
/// <summary>
|
||
|
/// 获取物料绑定的设备模具
|
||
|
/// </summary>
|
||
|
/// <param name="bindingtype"></param>
|
||
|
/// <param name="material"></param>
|
||
|
/// <returns></returns>
|
||
|
public MaterialBinding GetBindingTarget(string bindingtype, string material)
|
||
|
{
|
||
|
StringBuilder sql = new StringBuilder();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
sql.AppendLine("SELECT * FROM [T_QT_MATERIAL_BINDING] WHERE [BINDING_TYPE]=@bindingtype AND [MATERIAL_CODE]=@material");
|
||
|
parameters.Add(new DataParameter("bindingtype", bindingtype));
|
||
|
parameters.Add(new DataParameter("material", material));
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
return session.Get<MaterialBinding>(sql.ToString(), parameters.ToArray());
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取物料绑定的设备模具
|
||
|
/// </summary>
|
||
|
/// <param name="bindingtype"></param>
|
||
|
/// <param name="material"></param>
|
||
|
/// <returns></returns>
|
||
|
public List<MaterialBinding> GetBindingTargets(string bindingtype, string material)
|
||
|
{
|
||
|
StringBuilder sql = new StringBuilder();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
sql.AppendLine("SELECT * FROM [T_QT_MATERIAL_BINDING] WHERE [BINDING_TYPE]=@bindingtype AND [MATERIAL_CODE]=@material");
|
||
|
parameters.Add(new DataParameter("bindingtype", bindingtype));
|
||
|
parameters.Add(new DataParameter("material", material));
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
return session.GetList<MaterialBinding>(sql.ToString(), parameters.ToArray()).ToList();
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取查询语句
|
||
|
/// <summary>
|
||
|
/// 获取查询语句
|
||
|
/// </summary>
|
||
|
/// <param name="user">查询条件</param>
|
||
|
/// <param name="parameters">参数</param>
|
||
|
/// <returns>查询语句</returns>
|
||
|
private string GetQuerySql(MaterialBinding condition, ref List<DataParameter> parameters)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
StringBuilder whereBuilder = new StringBuilder();
|
||
|
try
|
||
|
{
|
||
|
//构成查询语句
|
||
|
sqlBuilder.Append("SELECT PID,BINDING_TYPE,TARGET_CODE,MATERIAL_CODE ");
|
||
|
sqlBuilder.Append("FROM T_QT_MATERIAL_BINDING ");
|
||
|
whereBuilder.Append(" AND FLGDEL<> '1' ");
|
||
|
//查询条件
|
||
|
if (whereBuilder.Length > 0)
|
||
|
{
|
||
|
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
|
||
|
}
|
||
|
return sqlBuilder.ToString();
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
private string GetQuerySqlMaterialBinding(MaterialBinding condition, ref List<DataParameter> parameters)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
StringBuilder whereBuilder = new StringBuilder();
|
||
|
try
|
||
|
{
|
||
|
//构成查询语句
|
||
|
sqlBuilder.Append("SELECT * FROM T_QT_MATERIAL_BINDING ");
|
||
|
|
||
|
if (string.IsNullOrEmpty(condition.BINDING_TYPE) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND BINDING_TYPE = @BINDING_TYPE");
|
||
|
parameters.Add(new DataParameter { ParameterName = "BINDING_TYPE", DataType = DbType.String, Value = condition.BINDING_TYPE });
|
||
|
}
|
||
|
|
||
|
if (string.IsNullOrEmpty(condition.TARGET_CODE) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND TARGET_CODE = @TARGET_CODE");
|
||
|
parameters.Add(new DataParameter { ParameterName = "TARGET_CODE", DataType = DbType.String, Value = condition.TARGET_CODE });
|
||
|
}
|
||
|
|
||
|
if (string.IsNullOrEmpty(condition.IS_MATERIAL_CODE) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND IS_MATERIAL_CODE = @IS_MATERIAL_CODE");
|
||
|
parameters.Add(new DataParameter { ParameterName = "IS_MATERIAL_CODE", DataType = DbType.String, Value = condition.IS_MATERIAL_CODE });
|
||
|
}
|
||
|
|
||
|
if (string.IsNullOrEmpty(condition.MATERIAL_CODE) == false)
|
||
|
{
|
||
|
whereBuilder.Append(" AND MATERIAL_CODE = @MATERIAL_CODE");
|
||
|
parameters.Add(new DataParameter { ParameterName = "MATERIAL_CODE", DataType = DbType.String, Value = condition.MATERIAL_CODE });
|
||
|
}
|
||
|
|
||
|
//查询条件
|
||
|
if (whereBuilder.Length > 0)
|
||
|
{
|
||
|
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
|
||
|
}
|
||
|
return sqlBuilder.ToString();
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取导出的数据
|
||
|
/// <summary>
|
||
|
/// 获取导出的数据
|
||
|
/// </summary>
|
||
|
/// <param name="user">查询条件</param>
|
||
|
/// <returns>数据</returns>
|
||
|
public DataTable GetExportData(MaterialBinding info)
|
||
|
{
|
||
|
DataTable dt = null;
|
||
|
string sql = null;
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
//构成查询语句
|
||
|
sql = this.GetQuerySql(info, ref parameters);
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
dt = session.GetTable(sql, parameters.ToArray());
|
||
|
dt.TableName = "MaterialBinding";
|
||
|
}
|
||
|
return dt;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 信息是否重复
|
||
|
/// <summary>
|
||
|
/// 判断名称是否存在
|
||
|
/// </summary>
|
||
|
/// <param name="info"></param>
|
||
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
||
|
public bool Exists(MaterialBinding info)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
StringBuilder whereBuilder = new StringBuilder();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
sqlBuilder.Append("SELECT COUNT(0) FROM T_QT_MATERIAL_BINDING");
|
||
|
if (info.PID == null)
|
||
|
{
|
||
|
info.PID = "";
|
||
|
}
|
||
|
whereBuilder.Append(" AND PID <> @PID ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "PID", DataType = DbType.String, Value = info.PID });
|
||
|
|
||
|
//添加进行无重复字段判断代码
|
||
|
|
||
|
if (whereBuilder.Length > 0)
|
||
|
{
|
||
|
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
|
||
|
}
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
count = Convert.ToInt32(session.ExecuteSqlScalar(sqlBuilder.ToString(), parameters.ToArray()));
|
||
|
}
|
||
|
return count > 0;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 插入信息
|
||
|
/// <summary>
|
||
|
/// 插入信息(单表)
|
||
|
/// </summary>
|
||
|
/// <param name="">信息</param>
|
||
|
/// <returns>插入行数</returns>
|
||
|
public int Insert(MaterialBinding info)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//插入基本信息
|
||
|
count = session.Insert<MaterialBinding>(info);
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 更新信息
|
||
|
/// <summary>
|
||
|
/// 更新信息
|
||
|
/// </summary>
|
||
|
/// <param name=""></param>
|
||
|
/// <returns>更新行数</returns>
|
||
|
public int Update(MaterialBinding info)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//更新基本信息
|
||
|
count = session.Update<MaterialBinding>(info);
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 逻辑删除
|
||
|
/// <summary>
|
||
|
/// 逻辑删除信息
|
||
|
/// </summary>
|
||
|
/// <param name=""></param>
|
||
|
/// <returns>删除个数</returns>
|
||
|
public int Delete(MaterialBinding info)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//删除基本信息
|
||
|
sqlBuilder.Append("UPDATE T_QT_MATERIAL_BINDING ");
|
||
|
sqlBuilder.Append("SET FLGDEL = '1' ");
|
||
|
sqlBuilder.Append("WHERE PID = @PID ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "PID", DataType = DbType.String, Value = info.PID });
|
||
|
count = session.ExecuteSql(sqlBuilder.ToString(), parameters.ToArray());
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
public int Del(MaterialBinding info)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//删除基本信息
|
||
|
sqlBuilder.Append("delete from T_QT_MATERIAL_BINDING ");
|
||
|
sqlBuilder.Append("WHERE PID = @PID ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "PID", DataType = DbType.String, Value = info.PID });
|
||
|
count = session.ExecuteSql(sqlBuilder.ToString(), parameters.ToArray());
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 导入
|
||
|
public ImportMessage GetImportData(List<MaterialBinding> list)
|
||
|
{
|
||
|
ImportMessage em = new ImportMessage();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//设置祖先对象数据会话
|
||
|
session.OpenTs();
|
||
|
foreach (MaterialBinding info in list)
|
||
|
{
|
||
|
if (info.IsNewInfo)
|
||
|
{
|
||
|
//插入信息
|
||
|
int count = session.Insert<MaterialBinding>(info);
|
||
|
em.insertNum++;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
//更新信息
|
||
|
int count = session.Update<MaterialBinding>(info);
|
||
|
em.updateNum++;
|
||
|
}
|
||
|
}
|
||
|
session.CommitTs();
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
return em;
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|