You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

286 lines
12 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using ibk.IPD.Common;
using ibk.IPD.Entity;
using ibk.IPD.Entity.IPD_MR.Finishing;
using ibk.IPD.Entity.IPD_MR.Finishing.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年04月01日
* 创建者: 李跃升
* Copy Right: 北京科技大学设计研究院有限公司
********************************************************/
namespace ibk.IPD.Controller.IPD_MR.Finishing
{
[RoutePrefix("ipd/ipdMr")]
public class FlawDetectionController : ApiController
{
private static readonly ILog logger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
/// <summary>
/// 查询接口
/// </summary>
/// <param name="queryArgs"></param>
/// <returns></returns>
[HttpPost, Route("finishing/getFlawDetection")]
public RequestEntity GetFlawDetection(InspGraSpeciQueryArgs queryArgs)
{
RequestEntity result = new RequestEntity(); //声明返回参数实体类
StringBuilder strSql = new StringBuilder(); //声明拼接Sql语句变量
DataTable dtCheck = new DataTable();
//查询语句日期时间拼接起来格式化成yyyy-mm-dd hh24:mi:ss
//PK 10, STEEL_GRADE 200 ,ORDER_INSP_GRA 200 , INSP_GRA 20
strSql.AppendLine("SELECT PK,STEEL_GRADE,ORDER_INSP_GRA,INSP_GRA,to_date(UPD_DATE || UPD_TIME,'yyyy-mm-dd hh24:mi:ss') as UPD_DATE,UPD_TIME,UPD_EMP,to_date(INS_DATE || INS_TIME,'yyyy-mm-dd hh24:mi:ss') as INS_DATE,INS_TIME,INS_EMP FROM INSP_GRA_SPECI WHERE 1=1");
if (queryArgs != null)
{
if (!string.IsNullOrWhiteSpace(queryArgs.STEEL_GRADE)) strSql.AppendLine(" AND STEEL_GRADE LIKE '%" + queryArgs.STEEL_GRADE + "%'");
if (!string.IsNullOrWhiteSpace(queryArgs.ORDER_INSP_GRA)) strSql.AppendLine(" AND ORDER_INSP_GRA LIKE '%" + queryArgs.ORDER_INSP_GRA + "%'");
if (!string.IsNullOrWhiteSpace(queryArgs.INSP_GRA)) strSql.AppendLine(" AND INSP_GRA LIKE '%" + queryArgs.INSP_GRA + "%'");
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 || INS_TIME,'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 || INS_TIME,'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<INSP_GRA_SPECI>(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("GetFlawDetection 报错", ex);
}
return result;
}
/// <summary>
/// 添加接口
/// </summary>
/// <param name="insertModel"></param>
/// <returns></returns>
[HttpPost, Route("finishing/addFlawDetection")]
public RequestEntity AddFlawDetection(INSP_GRA_SPECI insertModel)
{
RequestEntity result = new RequestEntity();
StringBuilder strSql = new StringBuilder();
DateTime dtNow = DateTime.Now;
try
{
#region 参数判断
//PK 10, STEEL_GRADE 200 ,ORDER_INSP_GRA 200 , INSP_GRA 20
if (string.IsNullOrEmpty(insertModel.STEEL_GRADE) || insertModel.STEEL_GRADE.Length > 200)
{
result.msg = "钢种不可为空且长度不可超过200";
result.code = "0";
return result;
}
if (string.IsNullOrEmpty(insertModel.ORDER_INSP_GRA) || insertModel.ORDER_INSP_GRA.Length > 200 )
{
result.msg = "订单探伤要求不可为空且长度不可超过200";
result.code = "0";
return result;
}
if (string.IsNullOrEmpty(insertModel.INSP_GRA) || insertModel.INSP_GRA.Length > 20)
{
result.msg = "探伤等级不可为空且长度不可超过20";
result.code = "0";
return result;
}
#endregion
// 拼接主键重复check查询语句
//PK 10,
//STEEL_GRADE 200 ,ORDER_INSP_GRA 200 , INSP_GRA 20
strSql.AppendLine("SELECT * FROM INSP_GRA_SPECI WHERE 1=1 ");
strSql.AppendLine(string.Format("AND STEEL_GRADE = '{0}' AND ORDER_INSP_GRA = '{1}' AND INSP_GRA = '{2}' ", insertModel.STEEL_GRADE, insertModel.ORDER_INSP_GRA, insertModel.INSP_GRA));
insertModel.INS_DATE = dtNow.ToString("yyyyMMdd");
insertModel.INS_TIME = dtNow.ToString("HHmmss");
using (IDbContext db = ObjectContainer.GetObject<IDbContext>("db"))
{
// 执行主键重复查询
DataTable dtCheck = db.Query(strSql.ToString());
if (dtCheck.Rows.Count > 0) // 若数据库中存在则返回错误码0并msg提示用户
{
result.msg = "数据已存在,请确认后重试!";
result.code = "0";
return result;
}
if (db.Insert<INSP_GRA_SPECI>(insertModel) > 0)
{
result.msg = "操作成功";
result.code = "1";
}
}
}
catch (Exception ex)
{
result.msg = "数据库错误!";
result.code = "0";
logger.Error("AddFlawDetection 报错 : ", ex);
}
return result;
}
/// <summary>
/// 更新接口
/// </summary>
/// <param name="requestData"></param>
/// <returns></returns>
[HttpPost, Route("finishing/updFlawDetection")]
public RequestEntity UpdFlawDetection(IList<INSP_GRA_SPECI> requestData)
{
RequestEntity result = new RequestEntity();
DataTable dtCheck = new DataTable();
StringBuilder strSql = new StringBuilder();
DateTime dtNow = DateTime.Now;
requestData[1].UPD_DATE = dtNow.ToString("yyyyMMdd");
requestData[1].UPD_TIME = dtNow.ToString("HHmmss");
#region 参数判断
//PK 10, STEEL_GRADE 200 ,ORDER_INSP_GRA 200 , INSP_GRA 20
if (string.IsNullOrEmpty(requestData[1].STEEL_GRADE) || requestData[1].STEEL_GRADE.Length > 200)
{
result.msg = "钢种不可为空且长度不可超过200";
result.code = "0";
return result;
}
if (string.IsNullOrEmpty(requestData[1].ORDER_INSP_GRA) || requestData[1].ORDER_INSP_GRA.Length > 200)
{
result.msg = "订单探伤要求不可为空且长度不可超过200";
result.code = "0";
return result;
}
if (string.IsNullOrEmpty(requestData[1].INSP_GRA) || requestData[1].INSP_GRA.Length > 20)
{
result.msg = "探伤等级不可为空且长度不可超过20";
result.code = "0";
return result;
}
#endregion
try
{
using (IDbContext db = ObjectContainer.GetObject<IDbContext>("db"))
{
// 查询是否有主键相同数据
//PK 10,
//STEEL_GRADE 200 ,ORDER_INSP_GRA 200 , INSP_GRA 20
strSql.AppendLine("SELECT * FROM INSP_GRA_SPECI WHERE 1=1 ");
strSql.AppendLine(string.Format("AND STEEL_GRADE = '{0}' AND ORDER_INSP_GRA = '{1}' AND INSP_GRA = '{2}' ", requestData[1].STEEL_GRADE, requestData[1].ORDER_INSP_GRA, requestData[1].INSP_GRA));
// 执行主键重复查询
dtCheck = db.Query(strSql.ToString());
if (dtCheck.Rows.Count > 0) // 若数据库中存在则返回错误码0并msg提示用户
{
result.msg = "数据已存在,请确认后重试!";
result.code = "0";
}
else
{
//更新哪些字段
//PK 10,
//STEEL_GRADE 200 ,ORDER_INSP_GRA 200 , INSP_GRA 20
if (db.Execute("UPDATE INSP_GRA_SPECI SET " + string.Format(" STEEL_GRADE = '{0}' , ORDER_INSP_GRA = '{1}' , INSP_GRA = '{2}' , UPD_DATE = '{3}',UPD_TIME='{4}',UPD_EMP = '{5}' ", requestData[1].STEEL_GRADE, requestData[1].ORDER_INSP_GRA, requestData[1].INSP_GRA, requestData[1].UPD_DATE, requestData[1].UPD_TIME, requestData[1].UPD_EMP) +
//根据主键字段可以确定唯一数据即要修改的数据
//PK
string.Format("WHERE 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("UpdFlawDetection 报错", ex);
return result;
}
}
/// <summary>
/// 删除接口
/// </summary>
/// <param name="delModel"></param>
/// <returns></returns>
[HttpPost, Route("finishing/delFlawDetection")]
public RequestEntity DelFlawDetection(INSP_GRA_SPECI delModel)
{
RequestEntity result = new RequestEntity();
StringBuilder strSql = new StringBuilder();
try
{
//PK
strSql.AppendLine("DELETE FROM INSP_GRA_SPECI WHERE 1=1 ");
strSql.AppendLine(string.Format("AND 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("DelFlawDetection 报错", ex);
}
return result;
}
}
}