|
|
using ibk.IPD.Common;
|
|
|
using ibk.IPD.Entity;
|
|
|
using ibk.IPD.Entity.IPD_MR.CapacityAndTime;
|
|
|
using ibk.IPD.Entity.IPD_MR.CapacityAndTime.QueryArgs;
|
|
|
using log4net;
|
|
|
using SOA.Objects;
|
|
|
using SOA.Persistent;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Data;
|
|
|
using System.Linq;
|
|
|
using System.Reflection;
|
|
|
using System.Text;
|
|
|
using System.Threading.Tasks;
|
|
|
using System.Web.Http;
|
|
|
/********************************************************
|
|
|
* 简 介:南钢设备能力及工序时间维护
|
|
|
* 后道设备能力标准(新增)维护后端接口
|
|
|
* 版本号:V1.0
|
|
|
* 日 期:2022年05月20日
|
|
|
* 创建者: 李跃升
|
|
|
* Copy Right: 北京科技大学设计研究院有限公司
|
|
|
********************************************************/
|
|
|
namespace ibk.IPD.Controller.IPD_MR.CapacityAndTime
|
|
|
{
|
|
|
[RoutePrefix("ipd/ipdMr")]
|
|
|
public class RearEquCapacityController : ApiController
|
|
|
{
|
|
|
private static readonly ILog logger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
|
|
/// <summary>
|
|
|
/// 参数校验
|
|
|
/// </summary>
|
|
|
/// <param name="cncs"></param>
|
|
|
/// /// <param name="result"></param>
|
|
|
/// <returns>是否通过参数校验</returns>
|
|
|
public bool ParameterCalibration(REAR_EQU_CAPACITY cncs, RequestEntity result)
|
|
|
{
|
|
|
#region 参数判断
|
|
|
|
|
|
if (!string.IsNullOrEmpty(cncs.DEAL_PRC))
|
|
|
if (CommonUtils.GetLength(cncs.DEAL_PRC) > 8)
|
|
|
{
|
|
|
result.msg = "处理工序长度不可超过8!";
|
|
|
result.code = "0";
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(cncs.PRC_CAP))
|
|
|
if (!CommonUtils.IsNumber(cncs.PRC_CAP) || CommonUtils.GetLength(cncs.PRC_CAP) > 10)
|
|
|
{
|
|
|
result.msg = "工序能力是长度不可超过10的数字!";
|
|
|
result.code = "0";
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(cncs.THICK))
|
|
|
if (!CommonUtils.IsNumber(cncs.THICK) || CommonUtils.GetLength(cncs.THICK) > 3)
|
|
|
{
|
|
|
result.msg = "厚度是长度不可超过3的数字!";
|
|
|
result.code = "0";
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(cncs.PLT_STEEL))
|
|
|
if (CommonUtils.GetLength(cncs.PLT_STEEL) > 11)
|
|
|
{
|
|
|
result.msg = "牌号长度不可超过11!";
|
|
|
result.code = "0";
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
return true;
|
|
|
#endregion
|
|
|
}
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// 获取主键的条件
|
|
|
/// </summary>
|
|
|
/// <param name="primaryKeyEntity"></param>
|
|
|
/// <returns>AND 开头的 主键条件字符串</returns>
|
|
|
public string GetPrimaryKeyString(REAR_EQU_CAPACITY primaryKeyEntity)
|
|
|
{
|
|
|
StringBuilder strSql = new StringBuilder();
|
|
|
//if (!string.IsNullOrWhiteSpace(primaryKeyEntity.APLY_ITEM))
|
|
|
//因为主键是自增主键, 所以将判断主键重复换成重复数据判断
|
|
|
strSql.AppendLine(" AND DEAL_PRC = '" + primaryKeyEntity.DEAL_PRC + "'");
|
|
|
strSql.AppendLine(" AND PRC_CAP = '" + primaryKeyEntity.PRC_CAP + "'");
|
|
|
strSql.AppendLine(" AND THICK = '" + primaryKeyEntity.THICK + "'");
|
|
|
strSql.AppendLine(" AND PLT_STEEL = '" + primaryKeyEntity.PLT_STEEL + "'");
|
|
|
|
|
|
return strSql.ToString();
|
|
|
}
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// 获取主键查询的sql
|
|
|
/// </summary>
|
|
|
/// <param name="checkEntity"></param>
|
|
|
/// <returns>主键查询sql</returns>
|
|
|
public string GetCheckString(REAR_EQU_CAPACITY checkEntity)
|
|
|
{
|
|
|
string strSql = "SELECT * FROM REAR_EQU_CAPACITY WHERE 1=1 " + GetPrimaryKeyString(checkEntity);
|
|
|
return strSql;
|
|
|
}
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// 查询接口
|
|
|
/// </summary>
|
|
|
/// <param name="queryArgs"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpPost, Route("capacityAndTime/getRearEquCapacity")]
|
|
|
public RequestEntity GetRearEquCapacity(RearEquCapacityQueryArgs queryArgs)
|
|
|
{
|
|
|
RequestEntity result = new RequestEntity(); //声明返回参数实体类
|
|
|
StringBuilder strSql = new StringBuilder(); //声明拼接Sql语句变量
|
|
|
DataTable dtCheck = new DataTable();
|
|
|
|
|
|
//查询
|
|
|
//PK , DEAL_PRC , PRC_CAP , THICK , PLT_STEEL
|
|
|
strSql.AppendLine("SELECT PK , DEAL_PRC , PRC_CAP , THICK , PLT_STEEL ,to_date(INS_DATE || INS_TIME ,'yyyy-mm-dd hh24:mi:ss') as INS_DATE ,INS_TIME,INS_EMP , to_date(UPD_DATE || UPD_TIME ,'yyyy-mm-dd hh24:mi:ss') as UPD_DATE, UPD_TIME,UPD_EMP FROM REAR_EQU_CAPACITY WHERE 1 = 1 ");
|
|
|
if (queryArgs != null)
|
|
|
{
|
|
|
if (!string.IsNullOrWhiteSpace(queryArgs.DEAL_PRC)) strSql.AppendLine(" AND DEAL_PRC LIKE '%" + queryArgs.DEAL_PRC + "%'");
|
|
|
if (!string.IsNullOrWhiteSpace(queryArgs.START_PRC_CAP) && CommonUtils.IsNumber(queryArgs.START_PRC_CAP)) strSql.AppendLine(" AND PRC_CAP >=" + queryArgs.START_PRC_CAP);
|
|
|
if (!string.IsNullOrWhiteSpace(queryArgs.END_PRC_CAP) && CommonUtils.IsNumber(queryArgs.END_PRC_CAP)) strSql.AppendLine(" AND PRC_CAP <=" + queryArgs.END_PRC_CAP);
|
|
|
if (!string.IsNullOrWhiteSpace(queryArgs.START_THICK) && CommonUtils.IsNumber(queryArgs.START_THICK)) strSql.AppendLine(" AND THICK >=" + queryArgs.START_THICK);
|
|
|
if (!string.IsNullOrWhiteSpace(queryArgs.END_THICK) && CommonUtils.IsNumber(queryArgs.END_THICK)) strSql.AppendLine(" AND THICK <=" + queryArgs.END_THICK);
|
|
|
if (!string.IsNullOrWhiteSpace(queryArgs.PLT_STEEL)) strSql.AppendLine(" AND PLT_STEEL LIKE '%" + queryArgs.PLT_STEEL + "%'");
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(CommonUtils.ObjectToStr(queryArgs.START_TIME)) && CommonUtils.ObjectToStr(queryArgs.START_TIME) != "0001/1/1 0:00:00") strSql.AppendLine(" AND to_date(INS_DATE ,'yyyy-mm-dd hh24:mi:ss') >= to_date('" + CommonUtils.ObjectToStr(queryArgs.START_TIME) + "','yyyy-mm-dd hh24:mi:ss')");
|
|
|
if (!string.IsNullOrWhiteSpace(CommonUtils.ObjectToStr(queryArgs.END_TIME)) && CommonUtils.ObjectToStr(queryArgs.END_TIME) != "0001/1/1 0:00:00") strSql.AppendLine(" AND to_date(INS_DATE ,'yyyy-mm-dd hh24:mi:ss') <= to_date('" + CommonUtils.ObjectToStr(queryArgs.END_TIME) + "','yyyy-mm-dd hh24:mi:ss')");
|
|
|
}
|
|
|
|
|
|
try
|
|
|
{
|
|
|
//开启数据库连接查询数据
|
|
|
using (IDbContext db = ObjectContainer.GetObject<IDbContext>("db"))
|
|
|
{
|
|
|
strSql.AppendLine("Order By INS_DATE DESC ");
|
|
|
dtCheck = db.Query(strSql.ToString());
|
|
|
result.data = db.Query<REAR_EQU_CAPACITY>(strSql.ToString());
|
|
|
if (dtCheck.Rows.Count > 0)
|
|
|
{
|
|
|
result.msg = "操作成功!";
|
|
|
result.code = "1";
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
result.msg = "未找到查询所需数据!";
|
|
|
result.code = "1";
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
result.msg = "数据库错误!";
|
|
|
result.code = "0";
|
|
|
logger.Error("GetRearEquCapacity 报错", ex);
|
|
|
}
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// 添加接口
|
|
|
/// </summary>
|
|
|
/// <param name="insertModel"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpPost, Route("capacityAndTime/addRearEquCapacity")]
|
|
|
public RequestEntity AddRearEquCapacity(REAR_EQU_CAPACITY insertModel)
|
|
|
{
|
|
|
RequestEntity result = new RequestEntity();
|
|
|
DateTime dtNow = DateTime.Now;
|
|
|
try
|
|
|
{
|
|
|
#region 参数判断
|
|
|
if (!ParameterCalibration(insertModel, result))
|
|
|
return result;
|
|
|
#endregion
|
|
|
|
|
|
insertModel.INS_DATE = dtNow.ToString("yyyyMMdd");
|
|
|
insertModel.INS_TIME = dtNow.ToString("HHmmss");
|
|
|
|
|
|
using (IDbContext db = ObjectContainer.GetObject<IDbContext>("db"))
|
|
|
{
|
|
|
// 执行主键重复查询
|
|
|
DataTable dtCheck = db.Query(GetCheckString(insertModel));
|
|
|
|
|
|
if (dtCheck.Rows.Count > 0) // 若数据库中存在则返回错误码0并msg提示用户
|
|
|
{
|
|
|
result.msg = "数据已存在,请确认后重试!";
|
|
|
result.code = "0";
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
if (db.Insert<REAR_EQU_CAPACITY>(insertModel) > 0)
|
|
|
{
|
|
|
result.msg = "操作成功";
|
|
|
result.code = "1";
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
result.msg = "数据库错误!";
|
|
|
result.code = "0";
|
|
|
logger.Error("AddRearEquCapacity 报错 : ", ex);
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// 更新接口
|
|
|
/// </summary>
|
|
|
/// <param name="requestData"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpPost, Route("capacityAndTime/updRearEquCapacity")]
|
|
|
public RequestEntity UpdRearEquCapacity(IList<REAR_EQU_CAPACITY> requestData)
|
|
|
{
|
|
|
RequestEntity result = new RequestEntity();
|
|
|
DataTable dtCheck = new DataTable();
|
|
|
DataTable dtCheckSelf = new DataTable();
|
|
|
StringBuilder strSql = new StringBuilder();
|
|
|
StringBuilder strSqlSelf = new StringBuilder();
|
|
|
DateTime dtNow = DateTime.Now;
|
|
|
|
|
|
|
|
|
requestData[1].UPD_DATE = dtNow.ToString("yyyyMMdd");
|
|
|
requestData[1].UPD_TIME = dtNow.ToString("HHmmss");
|
|
|
|
|
|
#region 参数判断
|
|
|
if (!ParameterCalibration(requestData[1], result))
|
|
|
return result;
|
|
|
#endregion
|
|
|
try
|
|
|
{
|
|
|
using (IDbContext db = ObjectContainer.GetObject<IDbContext>("db"))
|
|
|
{
|
|
|
// 执行主键重复查询
|
|
|
dtCheck = db.Query(GetCheckString(requestData[1]));
|
|
|
dtCheckSelf = db.Query(GetCheckString(requestData[0]));
|
|
|
|
|
|
if (dtCheck.Rows.Count > 0 && !CommonUtils.CompareDataTable(dtCheck, dtCheckSelf)) // 若数据库中存在则返回错误码0并msg提示用户
|
|
|
{
|
|
|
result.msg = "数据已存在,请确认后重试!";
|
|
|
result.code = "0";
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
//更新哪些字段
|
|
|
//PK ,DEAL_PRC , PRC_CAP , THICK , PLT_STEEL
|
|
|
if (db.Execute("UPDATE REAR_EQU_CAPACITY SET " + string.Format(" DEAL_PRC = '{0}' , PRC_CAP = '{1}' , THICK = '{2}' , PLT_STEEL = '{3}' , UPD_DATE = '{4}' , UPD_TIME='{5}',UPD_EMP = '{6}' WHERE 1 = 1 ",
|
|
|
requestData[1].DEAL_PRC, requestData[1].PRC_CAP, requestData[1].THICK, requestData[1].PLT_STEEL, requestData[1].UPD_DATE, requestData[1].UPD_TIME, requestData[1].UPD_EMP) +
|
|
|
//根据主键字段可以确定唯一数据即要修改的数据
|
|
|
string.Format(" AND PK = {0}", requestData[0].PK)) > 0)
|
|
|
{
|
|
|
result.msg = "操作成功";
|
|
|
result.code = "1";
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
result.msg = "数据未发生改变,请确认后重试!";
|
|
|
result.code = "0";
|
|
|
}
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
result.msg = "数据库错误!";
|
|
|
result.code = "0";
|
|
|
logger.Error("UpdRearEquCapacity 报错", ex);
|
|
|
return result;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// 删除接口
|
|
|
/// </summary>
|
|
|
/// <param name="delModel"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpPost, Route("capacityAndTime/delRearEquCapacity")]
|
|
|
public RequestEntity DelRearEquCapacity(REAR_EQU_CAPACITY delModel)
|
|
|
{
|
|
|
RequestEntity result = new RequestEntity();
|
|
|
StringBuilder strSql = new StringBuilder();
|
|
|
|
|
|
try
|
|
|
{
|
|
|
strSql.AppendLine("DELETE FROM REAR_EQU_CAPACITY WHERE 1=1 AND");
|
|
|
strSql.AppendLine(string.Format("PK = {0}", delModel.PK));
|
|
|
using (IDbContext db = ObjectContainer.GetObject<IDbContext>("db"))
|
|
|
{
|
|
|
db.Execute(strSql.ToString()); // 执行删除数据操作
|
|
|
result.msg = "操作成功";
|
|
|
result.code = "1";
|
|
|
}
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|
|
|
result.msg = "数据库错误!";
|
|
|
result.code = "0";
|
|
|
logger.Error("DelRearEquCapacity 报错", ex);
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
}
|
|
|
}
|