Files
2026-05-29 10:07:05 +08:00

45 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MesServerWork;
using bizFacade;
using System.Data;
//using SystemFramework;
namespace MesServerFunctions
{
partial class Functions_BASE_05
{
/// <summary>
/// 合格放行
/// </summary>
/// <param name="OpName"></param>
/// <param name="tagValue"></param>
private void ConfirmOkGo(object e)
{
try
{
DoWhatPlc.CustomeEvetnArgs msgEvent = (DoWhatPlc.CustomeEvetnArgs)e;
string OpName = Convert.ToString(msgEvent.OpName);
int tagValue = Convert.ToInt32(msgEvent.TagValue);
if (tagValue == 1)
{
//物料数据
BaseDataSystemMES.Material_Insert(OpName, 1);
MIS_BASE.Write_MaterialVerifyOver(OpName, true);
Sendmessage("24", "11", OpName);//向web发送消息
}
}
catch (Exception err)
{
////ApplicationLog.WriteLog(err, "Function05:ConfirmOkGo");
}
}
}
}