天津投入产出系统后端
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.

111 lines
4.2 KiB

3 years ago
using System;
using QMAPP.FJC.TRACING.DAInterface;
using QMAPP.FJC.Entity.QT;
using System.Data;
2 years ago
using QMAPP.FJC.Entity.CheckTime;
3 years ago
using QMAPP.FJC.DAL.CheckTime;
namespace QMAPP.FJC.TRACING.DataValidators
{
/// <summary>
/// 前置工序时间校验
/// </summary>
public class TimeValidator : IDataValidator
{
2 years ago
public ValidateResult Validate(DAObject data, DAIValidation validOption)
3 years ago
{
2 years ago
ProductTimeDAL dal = new ProductTimeDAL();
ProductTime timeCheck = dal.GetTimeCheckCfg(data.WorkLocState.WORKLOC_CODE, data.DAI.DA_CODE);
2 years ago
if (timeCheck == null) return new ValidateResult(true, "");
3 years ago
DataTable checkTable = dal.GetConfigValue(timeCheck, data.DAValue.ToString());
if (checkTable == null || checkTable.Rows.Count == 0)
{
return new ValidateResult(true, "");
}
DataRow dataRow = checkTable.Rows[0];
var ispass = TimeOutCompare(dataRow["CheckColumnValue"].ToString(), timeCheck.Operator, timeCheck.Check_Value, timeCheck.Check_ValueTo, timeCheck.Check_Type);
2 years ago
if (ispass) return new ValidateResult(true, "");
else
{
var preStatTime = DateTime.Now;
DateTime serviceTime = dal.GetServiceDateTime();
TimeSpan ts = serviceTime.Subtract(preStatTime);
2 years ago
return new ValidateResult(false, $"未达到{timeCheck.Operator}{(Convert.ToDecimal(timeCheck.Check_Value) / 3600).ToString("#0.0")}小时验证标准,条码时间{(Convert.ToDecimal(ts.TotalSeconds) / 3600).ToString("#0.0")}小时");
}
2 years ago
3 years ago
}
/// <summary>
/// 比较字符串相等
/// </summary>
/// <param name="pCheckColumnValue"></param>
/// <param name="pOperator"></param>
/// <param name="pCheck_Value"></param>
/// <returns></returns>
public static bool StringEqual(string pCheckColumnValue, string pOperator, string pCheck_Value)
{
return pCheckColumnValue == pCheck_Value;
}
/// <summary>
/// 比较时间是否满足条码
/// </summary>
/// <param name="pCheckColumnValue">校验字段配置的值</param>
/// <param name="pOperator">操作符</param>
/// <param name="pCheck_Value">验证值</param>
/// <returns></returns>
public static bool TimeOutCompare(string pCheckColumnValue, string pOperator, string pCheck_Value, string pCheck_ValueTo, string pCheck_Type)
{
var preStatTime = DateTime.Now;
if (!DateTime.TryParse(pCheckColumnValue, out preStatTime))
{
throw new Exception("检测值CheckColumnValue必须是DateTime类型");
}
int len = 0;
if (!int.TryParse(pCheck_Value, out len))
{
throw new Exception("验证值Check_Value必须是int类型");
}
int len2 = 0;
if (!string.IsNullOrEmpty(pCheck_ValueTo))
{
if (!int.TryParse(pCheck_ValueTo, out len2))
{
throw new Exception("验证值pCheck_ValueTo必须是int类型");
}
}
2 years ago
ProductTimeDAL dal = new ProductTimeDAL();
3 years ago
DateTime serviceTime = dal.GetServiceDateTime();
TimeSpan ts = serviceTime.Subtract(preStatTime);
if (pCheck_Type == "1")
{
switch (pOperator)
{
case ">": return ts.TotalSeconds > len;
case "<": return ts.TotalSeconds < len;
case "=": return ts.TotalSeconds == len;
case ">=": return ts.TotalSeconds >= len;
case "<=": return ts.TotalSeconds <= len;
}
}
else if (pCheck_Type == "2")
{
return pCheckColumnValue == pCheck_Value;
}
else if (pCheck_Type == "3")
{
if (ts.TotalSeconds > len && ts.TotalSeconds < len2) return true;
else return false;
}
return true;
}
}
}