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.
446 lines
16 KiB
446 lines
16 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.DAL;
|
|
using QMAPP.Entity;
|
|
using QMAPP.FJC.Entity.Basic;
|
|
using QMAPP.FJC.Entity.Equipment;
|
|
using QMAPP.FJC.Entity.MachineCheck;
|
|
using QMAPP.FJC.Entity.MaximoDataDB;
|
|
using QMFrameWork.Data;
|
|
|
|
namespace QMAPP.FJC.DAL.MachineCheck
|
|
{
|
|
/// <summary>
|
|
/// 模块编号:
|
|
/// 作 用:设备点检
|
|
/// 作 者:周晓东
|
|
/// 编写日期:2017年11月29日
|
|
///</summary>
|
|
public class MachineCheckDAL : BaseDAL
|
|
{
|
|
|
|
|
|
#region 获取信息
|
|
/// <summary>
|
|
/// 获取信息
|
|
/// </summary>
|
|
/// <param name="">条件</param>
|
|
/// <returns>*信息</returns>
|
|
public MachineCheckEntity Get(MachineCheckEntity model)
|
|
{
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//获取信息
|
|
model = session.Get<MachineCheckEntity>(model);
|
|
}
|
|
return model;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 获取列表
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="condition">条件</param>
|
|
/// <param name="page">数据页</param>
|
|
/// <returns>数据页</returns>
|
|
public DataPage GetList(MachineCheckEntity 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<MachineCheckEntity>(sql, parameters.ToArray(), page);
|
|
}
|
|
return page;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
public List<MachineCheckEntity> GetListNew(MachineCheckEntity condition)
|
|
{
|
|
string sql = null;
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
sql = this.GetQuerySql(condition, ref parameters);
|
|
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
return session.GetList<MachineCheckEntity>(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(MachineCheckEntity condition, ref List<DataParameter> parameters)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
StringBuilder whereBuilder = new StringBuilder();
|
|
try
|
|
{
|
|
//构成查询语句
|
|
sqlBuilder.Append("SELECT PID,(CASE WHEN CHECKSTATUS = '1' THEN '点检完成' else '初始化' end) as CHECKSTATUSTXT,(CASE WHEN CHECKRESULT = '1' THEN '合格' else '不合格' end) as CHECKRESULTTXT,SHIFT_CODE,CHECKDATE,MACHINECODE,WORKCELL_CODE,WORKLOC_CODE,CREATEUSER,CREATEDATE,UPDATEUSER,UPDATEDATE,CHECKTYPE ");
|
|
sqlBuilder.Append("FROM T_BD_MACHINECHECK ");
|
|
//查询条件
|
|
if (string.IsNullOrEmpty(condition.MACHINECODE) == false)
|
|
{
|
|
whereBuilder.Append(" AND MACHINECODE =@MACHINECODE");
|
|
parameters.Add(new DataParameter { ParameterName = "MACHINECODE", DataType = DbType.String, Value = condition.MACHINECODE });
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(condition.SHIFT_CODE) == false)
|
|
{
|
|
whereBuilder.Append(" AND SHIFT_CODE =@SHIFT_CODE");
|
|
parameters.Add(new DataParameter { ParameterName = "SHIFT_CODE", DataType = DbType.String, Value = condition.SHIFT_CODE });
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(condition.CHECKSTATUS) == false)
|
|
{
|
|
whereBuilder.Append(" AND CHECKSTATUS =@CHECKSTATUS");
|
|
parameters.Add(new DataParameter { ParameterName = "CHECKSTATUS", DataType = DbType.String, Value = condition.CHECKSTATUS });
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(condition.CHECKTYPE) == false)
|
|
{
|
|
whereBuilder.Append(" AND CHECKTYPE =@CHECKTYPE");
|
|
parameters.Add(new DataParameter { ParameterName = "CHECKTYPE", DataType = DbType.String, Value = condition.CHECKTYPE });
|
|
}
|
|
|
|
if (condition.STARTCHECKDATE != DateTime.MinValue && condition.ENDCHECKDATE != DateTime.MinValue)
|
|
{
|
|
whereBuilder.Append(" AND (CHECKDATE >= @STARTCHECKDATE AND CHECKDATE <= @ENDCHECKDATE)");
|
|
parameters.Add(new DataParameter { ParameterName = "STARTCHECKDATE", DataType = DbType.String, Value = condition.STARTCHECKDATE.ToString("yyyy-MM-dd 00:00:00") });
|
|
parameters.Add(new DataParameter { ParameterName = "ENDCHECKDATE", DataType = DbType.String, Value = condition.ENDCHECKDATE.ToString("yyyy-MM-dd 23:59:59") });
|
|
}
|
|
|
|
if (whereBuilder.Length > 0)
|
|
{
|
|
sqlBuilder.Append(" WHERE " + whereBuilder.ToString().Substring(4));
|
|
}
|
|
return sqlBuilder.ToString();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
private string GetSelectMachineCheckSql(MachineCheckEntity condition, ref List<DataParameter> parameters)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
StringBuilder whereBuilder = new StringBuilder();
|
|
try
|
|
{
|
|
//构成查询语句
|
|
sqlBuilder.Append("SELECT * FROM T_QT_EQUIPMENTCHECK WHERE DATETIME= (SELECT max(DATETIME) FROM T_QT_EQUIPMENTCHECK) ");
|
|
//查询条件
|
|
if (string.IsNullOrEmpty(condition.MACHINECODE) == false)
|
|
{
|
|
whereBuilder.Append(" AND ASSETNUM =@MACHINECODE");
|
|
parameters.Add(new DataParameter { ParameterName = "MACHINECODE", DataType = DbType.String, Value = condition.MACHINECODE });
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(condition.CHECKTYPE) == false)
|
|
{
|
|
whereBuilder.Append(" AND CHECKTYPE =@CHECKTYPE");
|
|
parameters.Add(new DataParameter { ParameterName = "CHECKTYPE", DataType = DbType.String, Value = condition.CHECKTYPE });
|
|
}
|
|
|
|
if (whereBuilder.Length > 0)
|
|
{
|
|
sqlBuilder.Append(whereBuilder);
|
|
}
|
|
return sqlBuilder.ToString();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
#region 获取导出的数据
|
|
/// <summary>
|
|
/// 获取导出的数据
|
|
/// </summary>
|
|
/// <param name="user">查询条件</param>
|
|
/// <returns>数据</returns>
|
|
public DataTable GetExportData(MachineCheckEntity model)
|
|
{
|
|
DataTable dt = null;
|
|
string sql = null;
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
//构成查询语句
|
|
sql = this.GetQuerySql(model, ref parameters);
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
dt = session.GetTable(sql, parameters.ToArray());
|
|
dt.TableName = "T_AW_EQUIPMENTMAINTAIN";
|
|
}
|
|
return dt;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 信息是否重复
|
|
/// <summary>
|
|
/// 判断名称是否存在
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <returns>true:已存在;fasel:不存在。</returns>
|
|
public bool ExistsEquipmentMaintain(MachineCheckEntity model)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
StringBuilder whereBuilder = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
int count = 0;
|
|
try
|
|
{
|
|
sqlBuilder.Append("SELECT COUNT(PID) FROM T_AW_EQUIPMENTMAINTAIN");
|
|
if (string.IsNullOrEmpty(model.PID) == false)
|
|
{
|
|
whereBuilder.Append(" AND PID <> @PID ");
|
|
parameters.Add(new DataParameter { ParameterName = "PID", DataType = DbType.String, Value = model.PID });
|
|
}
|
|
if (string.IsNullOrEmpty(model.MACHINECODE) == false)
|
|
{
|
|
whereBuilder.Append(" AND MACHINECODE = @MACHINECODE AND DOWNTIMEEND IS NULL");
|
|
parameters.Add(new DataParameter { ParameterName = "MACHINECODE", DataType = DbType.String, Value = model.MACHINECODE });
|
|
}
|
|
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()));
|
|
}
|
|
if (count > 0)
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
#region 插入信息
|
|
/// <summary>
|
|
/// 插入信息(单表)
|
|
/// </summary>
|
|
/// <param name="">信息</param>
|
|
/// <returns>插入行数</returns>
|
|
public int Insert(MachineCheckEntity model)
|
|
{
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
try
|
|
{
|
|
count = session.Insert<MachineCheckEntity>(model);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
session.RollbackTs();
|
|
throw;
|
|
}
|
|
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 更新信息
|
|
/// <summary>
|
|
/// 更新信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>更新行数</returns>
|
|
public int Update(MachineCheckEntity model)
|
|
{
|
|
if (BaseSession != null)
|
|
{
|
|
//插入基本信息
|
|
return BaseSession.Update(model);
|
|
}
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
return session.Update(model);
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
|
|
#region 逻辑删除
|
|
/// <summary>
|
|
/// 逻辑删除信息
|
|
/// </summary>
|
|
/// <param name=""></param>
|
|
/// <returns>删除个数</returns>
|
|
public int Delete(MachineCheckEntity model)
|
|
{
|
|
StringBuilder sqlBuilder = new StringBuilder();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
int count = 0;
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//删除基本信息
|
|
count = session.Delete<MachineCheckEntity>(model);
|
|
|
|
}
|
|
return count;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region 导入
|
|
public ImportMessage GetImportData(List<MachineCheckEntity> list)
|
|
{
|
|
ImportMessage em = new ImportMessage();
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
try
|
|
{
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
//设置祖先对象数据会话
|
|
session.OpenTs();
|
|
foreach (MachineCheckEntity info in list)
|
|
{
|
|
if (info.IsNewInfo == true)
|
|
{
|
|
//插入信息
|
|
int count = session.Insert<MachineCheckEntity>(info);
|
|
em.insertNum++;
|
|
}
|
|
else
|
|
{
|
|
//更新信息
|
|
int count = session.Update<MachineCheckEntity>(info);
|
|
em.updateNum++;
|
|
}
|
|
}
|
|
session.CommitTs();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
throw ex;
|
|
}
|
|
return em;
|
|
}
|
|
#endregion
|
|
|
|
//获取中间表状态为初始化的数据;
|
|
public MachineCheckEntity GetSelectMachineCheck(MachineCheckEntity condition)
|
|
{
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
//string sql = this.GetSelectMachineCheckSql(condition, ref parameters);
|
|
string sql = "SELECT * FROM T_QT_EQUIPMENTCHECK WHERE DATETIME= (SELECT max(DATETIME) FROM T_QT_EQUIPMENTCHECK WHERE ASSETNUM = '" + condition.MACHINECODE + "' and CHECKTYPE = '" + condition.CHECKTYPE + "')";
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbMaximo"))
|
|
{
|
|
return session.Get<MachineCheckEntity>(sql, parameters.ToArray());
|
|
}
|
|
}
|
|
//获取点检地址url
|
|
public MachineCheckEntity GetMachineCheckUrl(MachineCheckEntity condition)
|
|
{
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
string sql = "SELECT MACHINECHECK_URL FROM T_BD_MACHINECHECKURL where checktype='" + condition.CHECKTYPE + "' and machinecode='" + condition.MACHINECODE + "'";
|
|
using (IDataSession session = AppDataFactory.CreateMainSession())
|
|
{
|
|
return session.Get<MachineCheckEntity>(sql, parameters.ToArray());
|
|
}
|
|
}
|
|
|
|
// <returns>更新行数</returns>
|
|
public int UpdateSelectMachineCheck(string str)
|
|
{
|
|
//插入基本信息
|
|
List<DataParameter> parameters = new List<DataParameter>();
|
|
string sql = "UPDATE SelectMachineCheck SET CHECKSTATUS = '1' WHERE MACHINECODE = '"+str+"'";
|
|
|
|
if (BaseSession != null)
|
|
{
|
|
return BaseSession.ExecuteSql(sql,new CommandType(),parameters.ToArray());
|
|
}
|
|
using (IDataSession session = AppDataFactory.CreateSession("maindbSelect"))
|
|
{
|
|
return session.ExecuteSql(sql, new CommandType(), parameters.ToArray());
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|