32 lines
771 B
C#
32 lines
771 B
C#
using System;
|
|
using bizFacade;
|
|
//using SystemFramework;
|
|
using MesServerWork;
|
|
|
|
namespace MesServerFunctions
|
|
{
|
|
partial class Functions_BASE_10
|
|
{
|
|
/// <summary>
|
|
/// 合格放行
|
|
/// </summary>
|
|
/// <param name="OpName"></param>
|
|
/// <param name="tagValue"></param>
|
|
private void ConfirmOkGo_Repair(string OpName, int tagValue)
|
|
{
|
|
try
|
|
{
|
|
if (tagValue == 1)
|
|
{
|
|
//工作完成
|
|
MIS_BASE.Write_MaterialVerifyOver(OpName, true);
|
|
}
|
|
}
|
|
catch (Exception err)
|
|
{
|
|
////ApplicationLog.WriteLog(err, "Function10:ConfirmOkGo_Repair");
|
|
}
|
|
}
|
|
}
|
|
}
|