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.
364 lines
12 KiB
364 lines
12 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.MD.Entity;
|
|
using QMFrameWork.Data;
|
|
using System.Data;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.Entity.BZD;
|
|
|
|
namespace QMAPP.FJC.DAL.BZD
|
|
{
|
|
/// <summary>
|
|
/// 模块名称:BZD配置
|
|
/// 作 者:宁红钢
|
|
/// 编写日期:2020年04月29日
|
|
/// </summary>
|
|
public class BZDConfigDAL
|
|
{
|
|
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="">条件</param>
|
|
/// <returns>*信息</returns>
|
|
public BZDConfig Get(BZDConfig info)
|
|
{
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbBZD"))
|
|
{
|
|
//获取信息
|
|
info = session.Get<BZDConfig>(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(BZDConfig 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.CreateSession("maindbBZD"))
|
|
{
|
|
// 对应多种数据库
|
|
//string sqlChange = this.ChangeSqlByDB(sql, session);
|
|
page = session.GetDataPage<BZDConfig>(sql, parameters.ToArray(), page);
|
|
}
|
|
return page;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 获取全部规则
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public List<BZDConfig> GetAllList()
|
|
{
|
|
try
|
|
{
|
|
string sql = "SELECT * FROM [T_BD_BZDConfig]";
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbBZD"))
|
|
{
|
|
return session.GetList<BZDConfig>(sql, 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(BZDConfig condition, ref List<DataParameter> parameters)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
StringBuilder whereBuilder = new StringBuilder();
|
|
try
|
|
{
|
|
//构成查询语句//[PID],[MPID],[barcodeFist],[Company_code],[Vehicle_type],[MATERIALCODDE],[configColor],[CREATEUSER],[CREATEDATE],[FLGDEL]
|
|
sqlBuilder.Append("SELECT * ");
|
|
sqlBuilder.Append("FROM [T_BD_BZDConfig] ");
|
|
whereBuilder.Append(" AND FLGDEL<> '1' ");
|
|
//查询条件
|
|
|
|
////查询条件
|
|
//if (string.IsNullOrEmpty(condition.FACTORY_CODE) == false)
|
|
//{
|
|
// whereBuilder.Append(" AND FACTORY_CODE = @FACTORY_CODE ");
|
|
// parameters.Add(new DataParameter { ParameterName = "FACTORY_CODE", DataType = DbType.String, Value = condition.FACTORY_CODE });
|
|
//}
|
|
//if (string.IsNullOrEmpty(condition.REGEX) == false)
|
|
//{
|
|
// whereBuilder.Append(" AND REGEX LIKE @REGEX ");
|
|
// parameters.Add(new DataParameter { ParameterName = "REGEX", DataType = DbType.String, Value = "%" + condition.REGEX + "%" });
|
|
//}
|
|
|
|
|
|
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(BZDConfig info)
|
|
{
|
|
DataTable dt = null;
|
|
string sql = null;
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
//构成查询语句
|
|
sql = this.GetQuerySql(info, ref parameters);
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbBZD"))
|
|
{
|
|
dt = session.GetTable(sql, parameters.ToArray());
|
|
dt.TableName = "BZDConfig";
|
|
}
|
|
return dt;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 信息是否重复
|
|
/// <summary>
|
|
/// 判断名称是否存在
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
|
public bool Exists(BZDConfig 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_BD_BZDConfig");
|
|
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.CreateSession("maindbBZD"))
|
|
{
|
|
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(BZDConfig info)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbBZD"))
|
|
{
|
|
//插入基本信息
|
|
count = session.Insert<BZDConfig>(info);
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 更新信息
|
|
/// <summary>
|
|
/// 更新信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>更新行数</returns>
|
|
public int Update(BZDConfig info)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbBZD"))
|
|
{
|
|
//更新基本信息
|
|
count = session.Update<BZDConfig>(info);
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 逻辑删除
|
|
/// <summary>
|
|
/// 逻辑删除信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>删除个数</returns>
|
|
public int Delete(BZDConfig info)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbBZD"))
|
|
{
|
|
//删除基本信息
|
|
sqlBuilder.Append("UPDATE T_BD_BZDConfig ");
|
|
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;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 导入
|
|
public ImportMessage GetImportData(List<BZDConfig> list)
|
|
{
|
|
ImportMessage em = new ImportMessage();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbBZD"))
|
|
{
|
|
//设置祖先对象数据会话
|
|
session.OpenTs();
|
|
foreach (BZDConfig info in list)
|
|
{
|
|
if (info.IsNewInfo)
|
|
{
|
|
//插入信息
|
|
int count = session.Insert<BZDConfig>(info);
|
|
em.insertNum++;
|
|
}
|
|
else
|
|
{
|
|
//更新信息
|
|
int count = session.Update<BZDConfig>(info);
|
|
em.updateNum++;
|
|
}
|
|
}
|
|
session.CommitTs();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
return em;
|
|
}
|
|
#endregion
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="productCode">产品编号</param>
|
|
/// <returns></returns>
|
|
public DataTable GetMaterialCode(String productCode)
|
|
{
|
|
DataTable returnVal = new DataTable();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
|
|
string sqlScript =
|
|
@"select TOP 1 * from T_AW_PRODUCT where ProductCode = '" + productCode + "' ORDER BY CREATEDATE DESC";
|
|
|
|
//DataSet dataSet = SqlHelper.ExecuteDataset(Config.maindbConnectionString, CommandType.Text, sqlScript);
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
returnVal = session.GetTable(sqlScript.ToString(), parameters.ToArray());
|
|
}
|
|
return returnVal;
|
|
}
|
|
|
|
public DataTable GetAppConfigValue(string pConfigCode)
|
|
{
|
|
string sqlScript = $"select Value from T_MD_AppConfig_QD where Code='{pConfigCode}'";
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
return session.GetTable(sqlScript.ToString(), parameters.ToArray());
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|