32 lines
712 B
C#
32 lines
712 B
C#
using System;
|
|
//using SystemFramework;
|
|
|
|
|
|
namespace MesServerFunctions
|
|
{
|
|
partial class Functions_BASE_10
|
|
{
|
|
/// <summary>
|
|
/// 申请上线
|
|
/// </summary>
|
|
/// <param name="OpName"></param>
|
|
/// <param name="tagValue"></param>
|
|
private void PartLoad_Repair(string OpName, int tagValue)
|
|
{
|
|
try
|
|
{
|
|
if (tagValue == 1)
|
|
{
|
|
AsyncSendMessage_Notice(OpName, "请扫描返修件条码!");
|
|
}
|
|
}
|
|
catch (Exception err)
|
|
{
|
|
////ApplicationLog.WriteLog(err, "Function10:PartLoad");
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|