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 { /// /// 合格放行 /// /// /// 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"); } } } }