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.
376 lines
13 KiB
376 lines
13 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.FJC.Entity.SA;
|
||
|
using QMFrameWork.Data;
|
||
|
using System.Data;
|
||
|
using QMAPP.Entity;
|
||
|
|
||
|
namespace QMAPP.FJC.DAL.SA
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:工序生产数量
|
||
|
/// 作 者:张鹏
|
||
|
/// 编写日期:2017年12月11日
|
||
|
/// </summary>
|
||
|
public class WorkcellQtyCountDAL
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据会话
|
||
|
/// </summary>
|
||
|
public IDataSession BaseSession { get; set; }
|
||
|
|
||
|
#region 获取信息
|
||
|
/// <summary>
|
||
|
/// 获取信息
|
||
|
/// </summary>
|
||
|
/// <param name="">条件</param>
|
||
|
/// <returns>*信息</returns>
|
||
|
public WorkcellQtyCount Get(WorkcellQtyCount info)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
if (BaseSession != null)
|
||
|
{
|
||
|
info = BaseSession.Get<WorkcellQtyCount>(info);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//获取信息
|
||
|
info = session.Get<WorkcellQtyCount>(info);
|
||
|
}
|
||
|
}
|
||
|
return info;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取信息
|
||
|
/// </summary>
|
||
|
/// <param name="condition"></param>
|
||
|
/// <returns></returns>
|
||
|
public WorkcellQtyCount GetByCondition(WorkcellQtyCount condition)
|
||
|
{
|
||
|
List<DataParameter> param = new List<DataParameter>();
|
||
|
string sql = GetQuerySql(condition,ref param);
|
||
|
|
||
|
if (BaseSession != null)
|
||
|
{
|
||
|
return BaseSession.Get<WorkcellQtyCount>(sql,param.ToArray());
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//获取信息
|
||
|
return session.Get<WorkcellQtyCount>(sql, param.ToArray());
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取列表
|
||
|
/// <summary>
|
||
|
/// 获取列表
|
||
|
/// </summary>
|
||
|
/// <param name="condition">条件</param>
|
||
|
/// <param name="page">数据页</param>
|
||
|
/// <returns>数据页</returns>
|
||
|
public DataPage GetList(WorkcellQtyCount 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<WorkcellQtyCount>(sql, parameters.ToArray(), page);
|
||
|
}
|
||
|
return page;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 获取查询语句
|
||
|
/// <summary>
|
||
|
/// 获取查询语句
|
||
|
/// </summary>
|
||
|
/// <param name="user">查询条件</param>
|
||
|
/// <param name="parameters">参数</param>
|
||
|
/// <returns>查询语句</returns>
|
||
|
private string GetQuerySql(WorkcellQtyCount condition, ref List<DataParameter> parameters)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
StringBuilder whereBuilder = new StringBuilder();
|
||
|
try
|
||
|
{
|
||
|
//构成查询语句
|
||
|
sqlBuilder.Append("SELECT PID,WORKCENTER_CODE,FACTORY_CODE,EQUIPMENT_CODE,WORKCELL_CODE,MATRIAL_CODE,SHIFT_CODE,STATIS_DATE,QTY,OK_QTY,NOK_QTY,REWORK_QTY,CREATEDATE,UPDATEDATE ");
|
||
|
sqlBuilder.Append("FROM T_SA_WORKCELLQTYCOUNT ");
|
||
|
//查询条件
|
||
|
if (!string.IsNullOrEmpty(condition.WORKCELL_CODE))
|
||
|
{
|
||
|
whereBuilder.Append(" AND WORKCELL_CODE=@WORKCELL_CODE ");
|
||
|
parameters.Add(new DataParameter("WORKCELL_CODE", condition.WORKCELL_CODE));
|
||
|
}
|
||
|
if (!string.IsNullOrEmpty(condition.MATRIAL_CODE))
|
||
|
{
|
||
|
whereBuilder.Append(" AND MATRIAL_CODE=@MATRIAL_CODE ");
|
||
|
parameters.Add(new DataParameter("MATRIAL_CODE", condition.MATRIAL_CODE));
|
||
|
}
|
||
|
if (!string.IsNullOrEmpty(condition.SHIFT_CODE))
|
||
|
{
|
||
|
whereBuilder.Append(" AND SHIFT_CODE=@SHIFT_CODE ");
|
||
|
parameters.Add(new DataParameter("SHIFT_CODE", condition.SHIFT_CODE));
|
||
|
}
|
||
|
if (!string.Equals(condition.STATIS_DATE,DateTime.MinValue))
|
||
|
{
|
||
|
whereBuilder.Append(" AND STATIS_DATE=@STATIS_DATE ");
|
||
|
parameters.Add(new DataParameter("STATIS_DATE", condition.STATIS_DATE));
|
||
|
}
|
||
|
if (!string.IsNullOrEmpty(condition.EQUIPMENT_CODE))
|
||
|
{
|
||
|
whereBuilder.Append(" AND EQUIPMENT_CODE=@EQUIPMENT_CODE ");
|
||
|
parameters.Add(new DataParameter("EQUIPMENT_CODE", condition.EQUIPMENT_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(WorkcellQtyCount 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 = "WorkcellQtyCount";
|
||
|
}
|
||
|
return dt;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 信息是否重复
|
||
|
/// <summary>
|
||
|
/// 判断名称是否存在
|
||
|
/// </summary>
|
||
|
/// <param name="info"></param>
|
||
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
||
|
public bool Exists(WorkcellQtyCount 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_SA_WORKCELLQTYCOUNT");
|
||
|
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(WorkcellQtyCount info)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
if (BaseSession != null)
|
||
|
{
|
||
|
count = BaseSession.Insert<WorkcellQtyCount>(info);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//插入基本信息
|
||
|
count = session.Insert<WorkcellQtyCount>(info);
|
||
|
}
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 更新信息
|
||
|
/// <summary>
|
||
|
/// 更新信息
|
||
|
/// </summary>
|
||
|
/// <param name=""></param>
|
||
|
/// <returns>更新行数</returns>
|
||
|
public int Update(WorkcellQtyCount info)
|
||
|
{
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
if (BaseSession != null)
|
||
|
{
|
||
|
count = BaseSession.Update<WorkcellQtyCount>(info);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//更新基本信息
|
||
|
count = session.Update<WorkcellQtyCount>(info);
|
||
|
}
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 逻辑删除
|
||
|
/// <summary>
|
||
|
/// 逻辑删除信息
|
||
|
/// </summary>
|
||
|
/// <param name=""></param>
|
||
|
/// <returns>删除个数</returns>
|
||
|
public int Delete(WorkcellQtyCount info)
|
||
|
{
|
||
|
StringBuilder sqlBuilder = new StringBuilder();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
int count = 0;
|
||
|
try
|
||
|
{
|
||
|
|
||
|
//删除基本信息
|
||
|
sqlBuilder.Append("UPDATE T_SA_WORKCELLQTYCOUNT ");
|
||
|
sqlBuilder.Append("SET FLGDEL = '1' ");
|
||
|
sqlBuilder.Append("WHERE PID = @PID ");
|
||
|
parameters.Add(new DataParameter { ParameterName = "PID", DataType = DbType.String, Value = info.PID });
|
||
|
if (BaseSession != null)
|
||
|
{
|
||
|
count = BaseSession.ExecuteSql(sqlBuilder.ToString(), parameters.ToArray());
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
count = session.ExecuteSql(sqlBuilder.ToString(), parameters.ToArray());
|
||
|
}
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 导入
|
||
|
public ImportMessage GetImportData(List<WorkcellQtyCount> list)
|
||
|
{
|
||
|
ImportMessage em = new ImportMessage();
|
||
|
List<DataParameter> parameters = new List<DataParameter>();
|
||
|
try
|
||
|
{
|
||
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
||
|
{
|
||
|
//设置祖先对象数据会话
|
||
|
session.OpenTs();
|
||
|
foreach (WorkcellQtyCount info in list)
|
||
|
{
|
||
|
if (info.IsNewInfo)
|
||
|
{
|
||
|
//插入信息
|
||
|
int count = session.Insert<WorkcellQtyCount>(info);
|
||
|
em.insertNum++;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
//更新信息
|
||
|
int count = session.Update<WorkcellQtyCount>(info);
|
||
|
em.updateNum++;
|
||
|
}
|
||
|
}
|
||
|
session.CommitTs();
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
return em;
|
||
|
}
|
||
|
#endregion
|
||
|
}
|
||
|
}
|