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_01 { /// /// 返修放行 /// /// /// private void FalseGO(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_NG(OpName, 2); Sendmessage("24", "11", OpName);//向web发送消息 //工作完成 MIS_BASE.Write_MaterialVerifyOver(OpName, true); } } catch (Exception err) { ////ApplicationLog.WriteLog(err, "Function01:FalseGO"); } } } }