42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
using System;
|
|
using bizFacade;
|
|
//using SystemFramework;
|
|
using MesServerWork;
|
|
|
|
namespace MesServerFunctions
|
|
{
|
|
partial class FunctionMES
|
|
{
|
|
/// <summary>
|
|
/// 申请上线(针对上线工位)
|
|
/// </summary>
|
|
/// <param name="OpName"></param>
|
|
/// <param name="tagValue"></param>
|
|
private void PartLoad(object e)
|
|
{
|
|
try
|
|
{
|
|
DoWhatPlc.CustomeEvetnArgs msgEvent = (DoWhatPlc.CustomeEvetnArgs)e;
|
|
string OpName = Convert.ToString(msgEvent.OpName);
|
|
int tagValue = Convert.ToInt32(msgEvent.TagValue);
|
|
|
|
if (tagValue == 1)
|
|
{
|
|
|
|
}
|
|
else
|
|
{
|
|
//上线工位清MES传递机型信号
|
|
MIS_BASE.Write_EngineTypeGetOver_MES(OpName, false);
|
|
}
|
|
}
|
|
catch (Exception err)
|
|
{
|
|
// 保存出错日志 1.申请上线 2.传递机型 3.允许保存 4.扫码
|
|
MisDataSaveDate.FuntionMesRead.Alarm_SaveFileLog4Error(1, e, "Fun1060", err);
|
|
////ApplicationLog.WriteLog(err, "Function08:MesReadOver");
|
|
}
|
|
}
|
|
}
|
|
}
|