using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using CY.IDAL;
|
using System.Data.SqlClient;
|
using System.Data;
|
using CY.Model;
|
using System.Transactions;
|
namespace CY.SQLDAL
|
{
|
//工序设置
|
public class OA_WageProcessDAL : IOA_WageProcessDAL
|
{
|
private Database _dataBase = null;
|
|
public OA_WageProcessDAL()
|
{
|
_dataBase = new Database();
|
}
|
|
public OA_WageProcessDAL(Database dataBase)
|
{
|
_dataBase = dataBase;
|
}
|
|
/// <summary>
|
/// 新增
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool InserModel(Infrastructure.Domain.IAggregateRoot model)
|
{
|
Model.OA_WageProcess trueModel = model as Model.OA_WageProcess;
|
if (trueModel == null)
|
{
|
return false;
|
}
|
IList<SqlParameter> sqlParms = new List<SqlParameter>()
|
{ new SqlParameter("@MemberId", trueModel.MemberId) ,
|
new SqlParameter("@ParType", trueModel.ParType) ,
|
new SqlParameter("@ParName", trueModel.ParName) ,
|
new SqlParameter("@LastUpdateTime", trueModel.LastUpdateTime) ,
|
new SqlParameter("@Operator", trueModel.Operator)
|
};
|
try
|
{
|
_dataBase.Query("sp_OA_WageProcess_Insert", CommandType.StoredProcedure, sqlParms.ToArray<SqlParameter>());
|
}
|
catch (Exception ex)
|
{
|
throw ex;
|
}
|
return true;
|
}
|
|
/// <summary>
|
/// 修改
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool UpdateModel(Infrastructure.Domain.IAggregateRoot model)
|
{
|
Model.OA_WageProcess trueModel = model as Model.OA_WageProcess;
|
if (trueModel == null)
|
{
|
return false;
|
}
|
IList<SqlParameter> sqlParms = new List<SqlParameter>()
|
{ new SqlParameter("@Keyid", trueModel.Keyid) ,
|
new SqlParameter("@MemberId", trueModel.MemberId) ,
|
new SqlParameter("@ParType", trueModel.ParType) ,
|
new SqlParameter("@ParName", trueModel.ParName) ,
|
new SqlParameter("@LastUpdateTime", trueModel.LastUpdateTime) ,
|
new SqlParameter("@Operator", trueModel.Operator)
|
};
|
try
|
{
|
_dataBase.Query("sp_OA_WageProcess_Update", CommandType.StoredProcedure, sqlParms.ToArray<SqlParameter>());
|
}
|
catch (Exception ex)
|
{
|
throw ex;
|
}
|
return true;
|
}
|
|
/// <summary>
|
/// 删除
|
/// </summary>
|
/// <param name="model"></param>
|
/// <returns></returns>
|
public bool DeleteModel(Infrastructure.Domain.IAggregateRoot model)
|
{
|
Model.OA_WageProcess trueModel = model as Model.OA_WageProcess;
|
if (trueModel == null)
|
{
|
return false;
|
}
|
IList<SqlParameter> sqlParms = new List<SqlParameter>()
|
{
|
new SqlParameter("@Keyid",trueModel.Keyid)
|
};
|
try
|
{
|
_dataBase.Query("sp_OA_WageProcess_DeleteRow", CommandType.StoredProcedure, sqlParms.ToArray<SqlParameter>());
|
}
|
catch (Exception ex)
|
{
|
throw ex;
|
}
|
|
return true;
|
}
|
|
/// <summary>
|
/// 分页查询
|
/// </summary>
|
/// <param name="query"></param>
|
/// <param name="pagination"></param>
|
/// <returns></returns>
|
public IEnumerable<Model.OA_WageProcess> SelectModelPage(Infrastructure.Query.Query query, Infrastructure.Query.Pagination pagination)
|
{
|
throw new NotImplementedException();
|
}
|
|
/// <summary>
|
/// 单个查询
|
/// </summary>
|
/// <param name="query"></param>
|
/// <returns></returns>
|
public IEnumerable<Model.OA_WageProcess> SelectAllModel(Infrastructure.Query.Query query)
|
{
|
throw new NotImplementedException();
|
}
|
|
/// <summary>
|
/// 根据编号获得信息
|
/// </summary>
|
/// <param name="Keyid">编号</param>
|
/// <returns></returns>
|
public OA_WageProcess GetModelByKeyid(int? Keyid)
|
{
|
try
|
{
|
if (Keyid == null || Keyid < 0)
|
return null;//错误数据返会空
|
|
IList<OA_WageProcess> result = _dataBase.SelectModel<OA_WageProcess>(" * ", " OA_WageProcess ", string.Format(" Keyid='{0}'", Keyid)) as IList<OA_WageProcess>;//执行查询
|
|
return (null == result || result.Count == 0) ? null : result[0];//返回结果
|
}
|
catch (Exception ex)
|
{
|
throw ex;
|
}
|
}
|
|
/// <summary>
|
/// 分页查询
|
/// </summary>
|
/// <param name="pagination"></param>
|
/// <returns></returns>
|
public IEnumerable<Model.OA_WageProcess> SelectModelPage(Infrastructure.Query.Pagination pagination, Guid _MemberId, string _ParType, string _ParName, DateTime? _BeginLastUpdateTime, DateTime? _EndLastUpdateTime, string _Operator)
|
{
|
try
|
{
|
string condition = " 1=1 ";
|
|
if (_MemberId != Guid.Empty)
|
condition += " and MemberId = '" + _MemberId + "'";
|
|
if (!string.IsNullOrEmpty(_ParType))
|
condition += " and ParType = '" + _ParType + "'";
|
|
if (!string.IsNullOrEmpty(_ParName))
|
condition += " and ParName = '" + _ParName + "'";
|
|
if (_BeginLastUpdateTime.HasValue)
|
condition += string.Format(" and CAST(LastUpdateTime AS DATE) >='{0}'", _BeginLastUpdateTime);
|
|
if (_EndLastUpdateTime.HasValue)
|
condition += string.Format(" and CAST(LastUpdateTime AS DATE) <='{0}'", _EndLastUpdateTime);
|
|
if (!string.IsNullOrEmpty(_Operator))
|
condition += " and Operator = '" + _Operator + "'";
|
|
return _dataBase.SelectModelPage<Model.OA_WageProcess>(pagination, " * ", " OA_WageProcess ", " Keyid desc", " Keyid desc ", condition);
|
}
|
catch (Exception ex)
|
{
|
throw ex;
|
}
|
}
|
|
/// <summary>
|
/// 计件等级选择工序
|
/// </summary>
|
/// <returns></returns>
|
public IEnumerable<Model.OA_WageProcess> SelectModelList(Guid _MemberId, string _ParType)
|
{
|
try
|
{
|
string condition = " 1=1 ";
|
|
if (_MemberId != Guid.Empty)
|
condition += " and MemberId = '" + _MemberId + "'";
|
|
if (!string.IsNullOrEmpty(_ParType))
|
condition += " and ParType = '" + _ParType + "'";
|
|
condition += " and Keyid NOT IN (SELECT SPS_Process FROM dbo.OA_WageSetPiece where MemberId = '" + _MemberId + "' ) order by Keyid ASC";
|
|
return _dataBase.SelectModel<Model.OA_WageProcess>(" * ", " OA_WageProcess ", condition);
|
}
|
catch (Exception ex)
|
{
|
throw ex;
|
}
|
}
|
|
/// <summary>
|
/// 检测会员工资工序是否重复
|
/// </summary>
|
/// <param name="Name"></param>
|
/// <param name="MemberId"></param>
|
/// <param name="Keyid"></param>
|
/// <returns></returns>
|
public int IsExitsName(string Name, Guid MemberId, int? Keyid)
|
{
|
try
|
{
|
IList<OA_WageProcess> result = _dataBase.SelectModel<OA_WageProcess>("*", "OA_WageProcess", " MemberId ='" + MemberId + "' And ParName = '" + Name + "'") as IList<OA_WageProcess>;//执行查询
|
if (null == result || result.Count == 0)
|
{
|
return 0;
|
}
|
else
|
{
|
if (result[0].Keyid == Keyid)
|
return 0;
|
else
|
return 1;
|
}
|
}
|
catch (Exception ex)
|
{
|
throw ex;
|
}
|
}
|
}
|
}
|